Skip to content

Instantly share code, notes, and snippets.

@gerep
Created November 14, 2017 13:27
Show Gist options
  • Save gerep/503a3f718ccd9aacf84523cfd32ec3ab to your computer and use it in GitHub Desktop.
Save gerep/503a3f718ccd9aacf84523cfd32ec3ab to your computer and use it in GitHub Desktop.
Append zeroes to CPF numbers with < 11 characters on LibreOffice
=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