I have a report that contains several different date fields. I would like to get the user the ability to choose which date field the date parameter selects from. What would be the best way to do this?
Hi,
Best way is often hard to determine, but one way would be to create an additional parameter with the field names as the displayed text and a number as the data vaue, then use a selection formula something like:
Code:
If {?fieldname} = 1 then
{DateField1} = {?DateParameter}
else
If {?fieldname} = 2 then
{DateField2} = {?DateParameter}
...
etc.
To Paraphrase:"The Help you get is proportional to the Help you give.."
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.