Last active
August 16, 2025 05:52
-
-
Save thoriqmacto/a84ef6f475df4088b8ddf8f3e095eaf7 to your computer and use it in GitHub Desktop.
Excel formula to returning empty/blank or "" when date is null
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| =IFERROR( | |
| LET(r,INDEX(Master[Date],MATCH($A2,Master[Key],0)), | |
| IF(OR(r="",r=0),"",r) | |
| ), | |
| "") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment