cancel
Showing results for 
Search instead for 
Did you mean: 

Case Statement or Variable logic in Webi report

Former Member
0 Kudos

Hi,

I need to show the values for one column in webi report like if the document ID has value then "Document" and if it is null then " Batch"

Can any one provide me logic for this.

Regards,

Ravi

Accepted Solutions (1)

Accepted Solutions (1)

Former Member

It Should be something like below

= If Not(IsNull(document ID)) Then "Document" Else "Batch"

Regards

Niraj

Answers (2)

Answers (2)

Former Member
0 Kudos

Glad it worked for you please close the thread by marking the answer as correct

Former Member
0 Kudos

Hi Niraj,

Thanks for the logic....It works perfectly.