IN my select statement I have the following line
What is the best way to handle dividing by zero, also I want the result to be 0 if there is a divide by 0 error.
Code:
(dbo.PricingDrugCurrentTherapyDosing.UnitSales / MarketForecaster.SumOfUnitSales( dbo.PricingDrugCurrentTherapyDosing.PricingDrugID, dbo.PricingDrugCurrentTherapyDosing.Country, dbo.PricingDrugCurrentTherapyDosing.BrandGeneric))*100 AS 'Auto-Weights'
What is the best way to handle dividing by zero, also I want the result to be 0 if there is a divide by 0 error.