Forum Discussion

KH_Mike's avatar
KH_Mike
Helper III
5 years ago
Solved

Combine two Number Field with certain format

Hi All,

 

I have two columns which are "Year" & "Month", the "Year" column is something like 2020, 2021 ...etc. The "Month" column right now is 1, 2, 3 ...etc. I would like to use DAX to create a new column and the format will become YYYYMM. May I know how to convert the month 1, 2, 3 to 01, 02, 03 and combine it with "Year" column. Thank you.

  • Hi, KH_Mike 

    Please check the below picture, whether it is what you are looking for.

    It is for creating a column.

     

    year & month = 'Calendar'[Year] & FORMAT( 'Calendar'[date], "mm")
     

     

     

    Hi, My name is Jihwan Kim.

    If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.

    Linkedin: https://www.linkedin.com/in/jihwankim1975/

1 Reply

  • Hi, KH_Mike 

    Please check the below picture, whether it is what you are looking for.

    It is for creating a column.

     

    year & month = 'Calendar'[Year] & FORMAT( 'Calendar'[date], "mm")
     

     

     

    Hi, My name is Jihwan Kim.

    If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.

    Linkedin: https://www.linkedin.com/in/jihwankim1975/