How do I get it to return a blank value if there is no date in the field?

Best Answer
-
Add to the start of your formula:
If([Date Charged]@row="","",
then you would need one more ) at the end
Comments
-
How do I get it to return a blank value if there is no date in the field? I'm using the above formula:
=IF(MONTH([Date Charged]@row ),MONTH([Date Charged]@row )) = 1, "January", IF(MONTH([Date Charged]@row ) = 2, "February", IF(MONTH([Date Charged]@row ) = 3, "March", IF(MONTH([Date Charged]@row ) = 4, "April", IF(MONTH([Date Charged]@row ) = 5, "May", IF(MONTH([Date Charged]@row ) = 6, "June", IF(MONTH([Date Charged]@row ) = 7, "July", IF(MONTH([Date Charged]@row ) = 8, "August", IF(MONTH([Date Charged]@row ) = 9, "September", IF(MONTH([Date Charged]@row ) = 10, "October", IF(MONTH([Date Charged]@row ) = 11, "November", IF(MONTH([Date Charged]@row ) = 12, "December"))))))))))))
-
Add to the start of your formula:
If([Date Charged]@row="","",
then you would need one more ) at the end
-
Just sending you an @mention in case you missed the comment above!
@VBAGuru's solution is what I would suggest as well. π
Need more information? π | Help and Learning Center
γγγ«γ‘γ― (Konnichiwa), Hallo, Hola, Bonjour, OlΓ‘, Ciao!π | Global Discussions
-
That worked perfectly. I was trying to use ISBLANK but that obviously was not right. Thank you.
Help Article Resources
Categories
Check out the Formula Handbook template!