I was working on a reporting solution and faced a challenge while trying to define a parameter,
I have 25 step names from s1 to s25, and I wanted to group some of them together and have a group of 13 step_names, used a case statement like
selectdistinct
Case
when step_namein(s1,s2,s3,s5)then‘QS’
whenstep_namein(s6,s7,s8,s15)then‘PS’
ELSEstep_name
fromT1
wherestep_namein(s1,---, s25) as my Dataset
And I wanted to use these 13 groups as my parameters to display my report but its not showing me any results, for QS, PS
For the once that are not grouped I can see the results.
Can someone please help me figure out this?