Search code examples
google-sheets-formula

I need to concatenate and return the 0


I'm using Google sheets.

I have formatted column A to number ##. So cell A1 is 01. Then I'm concatenating =concatenate(A1, "EFT") and it's returning 1EFT. How do I get it to return 01EFT.


Solution

  • Try

    =concatenate(text(A1,"00"), "EFT")