1
Reporting / Re: Active Report - Select all drop down list items
« Last post by dougp on 01 Jul 2022 10:02:12 am »Maybe I missed something. Couldn't you do the same thing by making the parameter optional and not selecting anything in the list? If it's a matter of aggregating and showing a project name or "all projects", couldn't that be done by way of a macro?
Code: [Select]
case
when # prompt('project','string','ALL') # = 'ALL'
then 'All Projects'
else [Project Name]
end