Skip to content

Instantly share code, notes, and snippets.

@sultanshakir
Last active October 9, 2025 11:05
Show Gist options
  • Select an option

  • Save sultanshakir/a117c9748eca5d7b21cdce7c864ec18a to your computer and use it in GitHub Desktop.

Select an option

Save sultanshakir/a117c9748eca5d7b21cdce7c864ec18a to your computer and use it in GitHub Desktop.
DeKalb County GA Parcel ID format
# 📌 Formats parcel IDs into spaced DeKalb County format (e.g. 1508504015 → 15 085 04 015)
=IF(A2="","",REGEXREPLACE(REGEXREPLACE(TO_TEXT(A2),"\D",""),"(\d{2})(\d{3})(\d{2})(\d{3})","$1 $2 $3 $4"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment