Hello all,
I’m trying to create a formula that I can use to create a Group. This Group should limit the records to those in the current quarter. For example, if I run the report in June, I should get only those records for April, May & June. So far I have this to display the month:
Now, how can I limit it to only those in the Current Quarter?
Thanks for any/all assistance!!!
t.
I’m trying to create a formula that I can use to create a Group. This Group should limit the records to those in the current quarter. For example, if I run the report in June, I should get only those records for April, May & June. So far I have this to display the month:
Code:
//@Monthly
If CurrentDate in Calendar1stQtr Then monthname(month({Table.DateField})) Else
If CurrentDate in Calendar2ndQtr Then monthname(month({Table.DateField })) Else
If CurrentDate in Calendar3rdQtr Then monthname(month({Table.DateField })) Else
If CurrentDate in Calendar4thQtr Then monthname(month({Table.DateField }))
Thanks for any/all assistance!!!
t.