luvtitans50
MIS
I have a running total I created based on the following formula:
IF {Command.paycodedesc} in ['Regular Hours', 'Overtime 1', 'Overtime 2', 'Overtime 3']
then {Command.ytdpay}
ELSE 0
Here is the data being pulled:
WeekEnding: 3/27/10
Name Desc Units YTDPay
Company1 OT 1 909.30
Company1 Reg 40 6437.50
WeekEnding: 4/03/10
Name Desc Units YTDPay
Company1 Reg 40 6437.50
My running total is summing ytdpay ,
Evlauate on change of ytdpay,
Reset on change of @weekending group
I created the formula above because some times there is Expenses during a given week, but I don't want those included in the sum.
With the above data, my running total is coming back blank and I am thinking it is because there isn't the same number of values for each weekending, therefore in the 2nd weekending reading OT as 'zero' and not displaying the data at all? The correct amount that I need to return is the sum of (909.30+6437.50)....
Any suggestion will be greatly appreciated!!!!
IF {Command.paycodedesc} in ['Regular Hours', 'Overtime 1', 'Overtime 2', 'Overtime 3']
then {Command.ytdpay}
ELSE 0
Here is the data being pulled:
WeekEnding: 3/27/10
Name Desc Units YTDPay
Company1 OT 1 909.30
Company1 Reg 40 6437.50
WeekEnding: 4/03/10
Name Desc Units YTDPay
Company1 Reg 40 6437.50
My running total is summing ytdpay ,
Evlauate on change of ytdpay,
Reset on change of @weekending group
I created the formula above because some times there is Expenses during a given week, but I don't want those included in the sum.
With the above data, my running total is coming back blank and I am thinking it is because there isn't the same number of values for each weekending, therefore in the 2nd weekending reading OT as 'zero' and not displaying the data at all? The correct amount that I need to return is the sum of (909.30+6437.50)....
Any suggestion will be greatly appreciated!!!!