Hi,
I have a field that is either "TC", "26", or blank.
I'm trying to replace all of the blanks with a word so that I can perform a Join on the result.
I'm using the formula IIF(ISNULL([procedure]),"Global",[procedure]) but this does not seem to be working. The blank fields continue on as blanks.
Is there some other way to do this?
Thank you!
Solved! Go to Solution.
try:
IIF(IsEmpty([Procedure]),"Global",[Procedure])
if that doesn't work....
IIF(IsEmpty(Trim([Procedure])),"Global",[Procedure])
Cheers,
Mark
Updated logic (missed an end paren).
Hi Mark,
Thanks for the suggestions!
I'm receiving the error "Wrong number of parameters for the function "ISEMPTY".
By the way, is this still a function in 11.0? I should have specified.
sorry. i fixed the logic :)
yes. good for 11 and probably all future releases.
Thanks a bunch as always!
User | Count |
---|---|
18 | |
14 | |
13 | |
9 | |
8 |