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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

formula needed for previous dates 3

Status
Not open for further replies.

jedder18

Technical User
Mar 4, 2013
29
0
0
US
Looking for a simple formula to show all the days prior to current month...

TIA....

Jen

Jedder

 
Are you saying you want the report to return records where a specific date field from your database is prior to the current month? There are several ways to do this. One way would be:

Code:
{Table.DateField} <= (CurrentDate - Day(CurrentDate))

, where {Table.DateField} should be replaced with the actual field from your database.

Hope this helps.

Cheers
Pete
 
what I have is a report that counts a number of occurrences for an event.
That number needs to be added to occurrences that happened before that event.

I'm trying to get the prior wks to run correctly...given that the report has date parameters for current occur
I know I'll be using the current occur field added to prior wks field.


ex: prior wks occur current occur
wk1 30 10
wk2 40 5
wk3 45 and so on...

Thanks so much.






Jedder

 
If I understand correctly, you need to do something like this:
If your Date Range parameter is a single ranged parameter, you need a formula that is Maximum({?Date Range}
If you have separate Begin and End dates, use the End Date parameter in place of the {@EndDate} formula.

In you select statement include: {table.date} <= {@EndDate}

Group on the Event ID
Put everything in the Group Footer, suppress Detail and Group Header.
Sort by date

In the Section Expert do a Conditional Suppress on the Group Footer that is like:
not( Maximum({table.date},{table.event}) in {?Date Range})
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top