Can a report have a default parameter value without prompting for data? Such as making a report that automatically only pulls data from yesterday? From the last 7 work days, etc?
Default parameter value
1.4k Views Asked by CrystalN00b At
2
Can a report have a default parameter value without prompting for data? Such as making a report that automatically only pulls data from yesterday? From the last 7 work days, etc?
Use calculations based on
CurrentDate. To get yesterday's date, useCurrentDate - 1, or if you only want records from the last week, filer out any records dated beforeCurrentDate - 7This can either be implemented as an optional parameter (which defaults to yesterday if you leave it blank) or if you never want to prompt the user for input, skip the parameter entirely and place your formula directly into the record selection formula editor.