Hi,
In my report there is no prompt page and there is a date prompt in the report page itself along with a list report.
I need to give "last date of the previous month" as default selection in the date prompt and when I execute the report the list report should show the data as per "last date of the previous month".
I have javascript to show "last date of the previous month" , but its working when the date prompt is in prompt page.
When I add the date prompt in the report page and execute the report , I am getting Date popup asking for date selection.
Can you please help me.
Thanks,
Tushar
Make the filter/parameter optional:
#prompt ('MyDateParameter', 'date', timestampMask (_last_of_month (_add_months ($current_timestamp, -1)), 'yyyy-mm-dd'))#
Hi Doug,
Thanks a lot for your help :)