Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Formula displayed on Report header 1

Status
Not open for further replies.

ginkoba

Technical User
Jan 29, 2009
60
Hi,

I have a formula in my record selection as in:

{FieldName} = "test"
and
{Status} Like "active"
and
{@purchasedate} IN MonthToDate

I want to be able to display the month's name on the page header just below the report title as in:

Report Title
Through Jan 28, 2010

I also would like to find a way to go back 30days, 60days and 90days grouped by @purchasedate to display as in:

Amount: Last 30 days Last 60 days Last 90days
$200 150 300 200

Any help would do.

Thanks much
 
Create a formula like this:

"Report Title"+chr(13)+
"Through "+totext(datadate,"MMM dd, yyyy")

Format the formula to "can grow". If you stretch it on both ends to the page borders, you can also center it on the page by clicking on the center icon.

To capture previous data, you need to change your selection formula to:

{@purchasedate} in currentdate - 90 to currentdate

Then use formulas like this:

if {@purchasedate} in currentdate - 30 then {table.amt}

Insert a sum on this at the group level (invoiceID?). Repeat for other intervals.

-LB
 
LB,
Thanks much. This is very good however I would like to show month to date only. For instance if today is 15th of the month, I would like it to display from the first day of that current month to present.
Eg, if today is 15,
display should read From Feb 01 through Feb 15, 2010.

Thanks
 
Your original post said:

Report Title
Through Jan 28, 2010

Anyway, you could use:

"Report Title"+chr(13)+
"From " + totext(datadate-day(datadate)+1,"MMM dd")+
" Through "+totext(datadate,"MMM dd, yyyy")

Datadate will show the date the report was refreshed.

-LB

 
Thanks LB. You are right I was not clear earlier on the question. This now works!
 
How do I apply this formula to the last 60days or 2 months through current date?
 
Use a formula like this:

"Report Title"+chr(13)+"From " + totext(datadate-59,"MMM dd, yyyy")+" Through "+totext(datadate,"MMM dd, yyyy")

-LB
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top