Leading Zero for Day

Options
Tim Dollmeyer
Tim Dollmeyer ✭✭✭✭
edited 12/20/22 in Formulas and Functions

Hello,

I thought this would be simple, but apparently not, or I'm missing something. I'm trying to create a date key column using a date column. So a date like 01/02/2023 would read 20230102.

My problem is getting the leading zero on the single digit months & days. The DAY & MONTH functions give me a 1 or 2, etc., when I'm trying to get 01 or 02.

Any ideas would be greatly appreciated!

Best Answer

  • Dale Murphy
    Dale Murphy ✭✭✭✭✭✭
    Answer ✓
    Options

    @Tim Dollmeyer This formula works for me. The regional default for date is mm/dd/yy:

    YEAR([Date 2]@row) + "" + LEFT([Date 2]@row, 2) + "" + MID([Date 2]@row, 4, 2)

    where Date 2 is the column with the date of interest. Here are results:

    dm

Answers

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!