cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

IF ISNULL()

Former Member
0 Likes
1,051

Hi All,

I have a variable and would like to include the ISNULL() function to return "N/A" if empty. Current this is how my variable is setup:

=[Content] Where ([Name] = "Business Area")

I tried the below but does not like the 'WHERE':

=IF ISNULL([Content]) then "N/A" ELSE [Content] = Where ([Name] = "Business Area")

Any suggestions on what I am doing wrong?

Thanks

Accepted Solutions (1)

Accepted Solutions (1)

amitrathi239
Active Contributor
0 Likes

try this.

Var1=[Content] Where ([Name] = "Business Area")

=IF ISNULL([Content]) then "N/A" ELSE [Var1]

Former Member
0 Likes

Thanks Amit!

Answers (0)