andreadd
MIS
- Jan 15, 2008
- 67
I am still working on that time sheet report. I have resolved my first issue and am using subreports. my current problem is that I have 4 formulas in my details section for each given day to display the following:
start time
end time
meal start
meal end
formulas look like this:
if {PS_PKT_NCCTCIL_VW.PKT_CHECKIN_CODE} = 1
then "START TIME:" & {PS_PKT_NCCTCIL_VW.PKT_TIME}
end time is 2, meal start is 3 and meal end is 4
so i put these formulas in my details section and run the report. the data shows up just fine but instead of it saying
start time
meal start
meal end
end time
it says
end time
meal end
meal start
start time
i then tried making a formula looked like this:
totext(({@starttime}) + chr(13) +
({@REG_mealstart}) + chr(13) +
({@REG_mealend}) + chr(13) +
({@REG_endtime}))
and i got the same results. I've looked around and am not coming across anything. Does anyone know what I can do to make the formulas print in the order I gave them?
TIA for your help
start time
end time
meal start
meal end
formulas look like this:
if {PS_PKT_NCCTCIL_VW.PKT_CHECKIN_CODE} = 1
then "START TIME:" & {PS_PKT_NCCTCIL_VW.PKT_TIME}
end time is 2, meal start is 3 and meal end is 4
so i put these formulas in my details section and run the report. the data shows up just fine but instead of it saying
start time
meal start
meal end
end time
it says
end time
meal end
meal start
start time
i then tried making a formula looked like this:
totext(({@starttime}) + chr(13) +
({@REG_mealstart}) + chr(13) +
({@REG_mealend}) + chr(13) +
({@REG_endtime}))
and i got the same results. I've looked around and am not coming across anything. Does anyone know what I can do to make the formulas print in the order I gave them?
TIA for your help