hi,
anyone please....
in my formula i have to put coalesce function to each field so that if a field is null it will still continue to compute.
e.g.
Code:
(
(q.ManHours -
coalesce(q.OTHrs,0)) -
coalesce(q.regbreak,0) -
coalesce(q.regadjustment,0)
) as 'Reg Hrs'
do you know how to simplify coalesce? instead of distributing it on each field.
thanks
