cancel
Showing results for 
Search instead for 
Did you mean: 

Null values for columns with similar formula - webi report

former_member222155
Participant
0 Kudos

hi Gurus,

I want to display "payable currency" and "receivable currency" in 1 row as in pic1, I am using the below formula:

payable currency = [Currency] Where([P/R Flag] = "P")

receivable currency = [Currency] Where([P/R Flag] = "R")

When i use the above formula null values are getting displayed in alternate rows, can I know the way hide null values shown in pic2.

Thanks in advance

Accepted Solutions (1)

Accepted Solutions (1)

kohesco
Active Contributor
0 Kudos

payable currency = if ([P/R Flag] = "P") THen [Currency] Else ""

former_member222155
Participant
0 Kudos

Thanks for your repply Koen, your formula giving me same results when i use the below 2 formulas.

=If([P/R Flag]="P") Then [Notional Currency] Else ""

&

=If([P/R Flag]="R") Then [Notional Currency] Else ""

the above formulas give me these results..

I want to see below results currency in same row by suppressing nulls

kohesco
Active Contributor

is the P/R flag in your query (hidden dimension), what is causing the duplicated rows (is aggregation set in your table properties)?

if the variables are causing this set them as detail variable of your key (lowest level dimension in your table) and use your where formula

former_member222155
Participant

Wonderfull!!!

this works!!

Thank you for your help Sir 🙂

Answers (0)