Last active
October 9, 2025 11:05
-
-
Save sultanshakir/a117c9748eca5d7b21cdce7c864ec18a to your computer and use it in GitHub Desktop.
DeKalb County GA Parcel ID format
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
| # 📌 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