Skip to content

Instantly share code, notes, and snippets.

@thoriqmacto
Last active August 16, 2025 05:52
Show Gist options
  • Save thoriqmacto/a84ef6f475df4088b8ddf8f3e095eaf7 to your computer and use it in GitHub Desktop.
Save thoriqmacto/a84ef6f475df4088b8ddf8f3e095eaf7 to your computer and use it in GitHub Desktop.
Excel formula to returning empty/blank or "" when date is null
=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