kevnatajax
Technical User
I'm using CR7 on foxpro 2.5 dbf and trying to copy this formula and change month = 2. the formula below works for month = 1 but doesn't work for any other months. (data exist in other months) All formulas are in the Detail section. Report is grouped by year field. Please help.
This one works:
if tonumber({Clmanal.MONTH})=1 and ToNumber ({Clmanal.CODE}) in 1200 to 1299 then {Clmanal.TOTalPD}
Returns acturate totals
This on does not work:
if tonumber({Clmanal.MONTH})=2 and ToNumber ({Clmanal.CODE}) in 1200 to 1299 then {Clmanal.TOTalPD}
Returns 00's
This one works:
if tonumber({Clmanal.MONTH})=1 and ToNumber ({Clmanal.CODE}) in 1200 to 1299 then {Clmanal.TOTalPD}
Returns acturate totals
This on does not work:
if tonumber({Clmanal.MONTH})=2 and ToNumber ({Clmanal.CODE}) in 1200 to 1299 then {Clmanal.TOTalPD}
Returns 00's