on 2020 May 01 6:55 AM
Hi All,
I want to display values of certain columns based on the value of an object in my Webi report.
My columns are - ID and Name. My object name is Status that has values of 'Y' & 'N'. If Status = 'Y', I want to display values for both the ID and Name columns. If Status = 'N', I only want to display values for the ID column, but no values for the Name column i.e. blank. I am not sure how I would incorporate the logic in a report variable with an IF statement to display values for multiple columns. Any ideas?
Request clarification before answering.
Hi Jeewan,
Use the ID column as is in the table, but for the Name column, create a variable as v_Name with the below formula, and use that variable in the table.
=If([Status]="Y") Then [Name]
Elseif([Status]="N") Then ""
Thanks,
Mahboob Mohammed
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 8 | |
| 5 | |
| 4 | |
| 4 | |
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.