0

I am trying to write a if condition in webi but unable to accomplish.

Below is the code:

if ([Summary Column] inlist("a","b");"a")

Error I am getting

Unrecognized input

Sandra Rossi
  • 11,934
  • 5
  • 22
  • 48
Siva
  • 9,043
  • 12
  • 40
  • 63

1 Answers1

4

you are missing ;. try using below code.

If ([Summary Column] InList("a";"b");"a") 
Siva
  • 9,043
  • 12
  • 40
  • 63
shyam
  • 86
  • 6