I'm using the following formula
=NF($L14,"Shipment Date")
where L14 is sometimes blank. I've unsuccessfully tried writting the formula like =NF("@@"&$L14,"Shipment Date") to prevent getting error messages. How can I write an NF formula to allow for blank values?
Thanks
Date
Votes
2 comments
-
Jet Reports Historic Posts Hi there,
You shouldn't have to use the "@@" when using NF() functions. The only reason your NF() functions should ever get errors is because the NL() record key they are linked to (L14) has an error. The NL() is where you will need to deal with the blank value. Does this make sense? -
Jet Reports Historic Posts If you want your NF formula to check your NL result before returning a result, you can use the "if()" formula in Excel. I have used this on a few of my reports. Use the following:
=if($L14="","",NF($L14,"Shipment Date"))
Let me know if this gives you what you're looking for.
Thanks,
Scott
Please sign in to leave a comment.