on ‎2019 Mar 07 10:12 AM
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
Request clarification before answering.
try this.
Var1=[Content] Where ([Name] = "Business Area")
=IF ISNULL([Content]) then "N/A" ELSE [Var1]
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 8 | |
| 5 | |
| 4 | |
| 4 | |
| 3 | |
| 3 | |
| 3 | |
| 3 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.