Hi,
This is really helpful.
One step further, what I have to show is (as in the document example attached by rimpa) only the date field rows which have more than one Code(s) available and if a date is associated with only one code, then hide it, any idea how can we achieve it.
I am somehow trying to see if we can show only values which contain commas. I am on WebI XiR3.1 and oracle is the backend.
Any help is appreciated.
Thank you
Singh
Thank you for your reply,
Can you please elaborate,
so what I understand is, I have to create 2 variables at report level,
first_A: count(code) in date =1
what this does is it gives 0 for all the value which have more than one code(s) associated with it and “1” where there is only one Code(s) is available, when I include it in the display table (Date and Code(s) columns). How can I filter the 1 and display only the values whose first_A variable is 0.
Second, I did not get properly, can you please explain more.
1/ Click on show report filter, drag first_A over and manually enter 1 as the value you want to keep
2/ In your delimited string, you are searching for the position (using Pos) of the first comma. If it is a single code, then there wouldn’t be a comma, so Pos would be 0. Therefore keep all rows where Pos=0
Hi Mark,
Thank you for your help, this is what I did,
Created another measure variable as Count(Code)
= Count(Code)In [Date] = 1
Insert a vertical table and dragged the above columns, Count(Code), Date, Code(s).
Now, select and right click on Count(Code) column rows, select Input Control, select the Count(Code) variable from the list and clcik next, then Single Value–>Entry Field and from the input properties, change default value as 1 and Operator as Not Equal to, click Next and Finish.
Good stuff - it’s always difficult offering a precise solution without seeing the actual report but at least you’ve extending the answer to a solution.