Hi
I have a view which as a calculation for one field
dbrderHeader.TotalVolume * dbo.Delivery.LineCost
However, I have just noticed we have times where something may be collected so there would not be amounts in the fields. It is therefore leaving these lines out of the the query result.
I have tried something like
Select isnull (dbrderHeader.TotalVolume * dbo.Delivery.LineCost,0)
But it still not returning the ones missing. Could anyone advise how I get them to appear please.
Many thanks
I have a view which as a calculation for one field
dbrderHeader.TotalVolume * dbo.Delivery.LineCost
However, I have just noticed we have times where something may be collected so there would not be amounts in the fields. It is therefore leaving these lines out of the the query result.
I have tried something like
Select isnull (dbrderHeader.TotalVolume * dbo.Delivery.LineCost,0)
But it still not returning the ones missing. Could anyone advise how I get them to appear please.
Many thanks