Created
November 14, 2017 13:27
-
-
Save gerep/503a3f718ccd9aacf84523cfd32ec3ab to your computer and use it in GitHub Desktop.
Append zeroes to CPF numbers with < 11 characters on LibreOffice
This file contains 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
=IF(LEN(A1) < 11,CONCAT(REPT(0,11 - LEN(A1)), A1),A1) | |
=IF(LEN(A1) < 11, | |
CONCAT( | |
REPT(0,11 - LEN(A1) | |
), | |
A1), | |
A1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment