I have a Column which has the percentage values,i have a infinity symbol as one of value.But i need to replace all the non numeric values with 0's .How can i replace all non numeric values to 0?
=Iif(IsNumeric(fields!JulyRevenue.Value/Fields!JulyQuota.Value) ,(fields!JulyRevenue.Value/Fields!JulyQuota.Value),"0")
Is the above expression correct.Still i am getting the infinity value
Thanks In advance