Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
In if clause how to add multiple values if the if statement is true?
For example:
lets say x<50 is true
if(x<50, HERE I WOULD LIKE TO SEE ALL THE FIELDS IN CASE X<50 IS TRUE)
How to do this?
thanks
Not entirely clear what are you trying to say when you mention
"HERE I WOULD LIKE TO SEE ALL THE FIELDS IN CASE X<50 IS TRUE"
Can you provide some sample data with expected output to understand your requirement better?
Can you please confirm me is that condition you want to show for dim or expression
Hi,
maybe like this:
if(x<50, 'Field1, Field2, Field3, Field4, Field5')
hope this helps
regards
Marco