I have ten different formulas, all are the same for the exception that each one only puts information in the group footer if the date is in the specified date range. The problem I am having is that it is not putting hte correct information in the group footer. Below is one of the formulas. This is done in Crystal Reports 10. The Group Header / Footer is grouped by CompanyName.
If DateValue({Invoice.PostDate}) in CurrentDate - 49 to CurrentDate - 43 then
If {Memo.MemoID}="CONTACT" then
"CON"
Else If {Memo.MemoID}="BIO" then
"INV"
ELSE
" ";
As I mentioned, the above formula is not bringing back the correct data for the timeframe. Can anyone please tell me why? Thank you for your help.
If DateValue({Invoice.PostDate}) in CurrentDate - 49 to CurrentDate - 43 then
If {Memo.MemoID}="CONTACT" then
"CON"
Else If {Memo.MemoID}="BIO" then
"INV"
ELSE
" ";
As I mentioned, the above formula is not bringing back the correct data for the timeframe. Can anyone please tell me why? Thank you for your help.