Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
VenkateshC
Frequent Visitor

Concatenate multiple columns to get date column

Hi All, 

Good day!

 

I've started working on Power BI since past 2 months. I need some help. 

There is a excel with Date, Month and Year column. This is how I get the excel dump. 

Hence, dataset has 3 columns namely, Date, Month and Year_Temp. (Refer screenshot below)

I need to convert this information to date format (DD/MM/YYYY) to get meaningful reports. How can acheive this?

Thank you,

Venkatesh

 Column-Concatenate.png

 

2 ACCEPTED SOLUTIONS
Eric_Zhang
Employee
Employee

@VenkateshC wrote:

Hi All, 

Good day!

 

I've started working on Power BI since past 2 months. I need some help. 

There is a excel with Date, Month and Year column. This is how I get the excel dump. 

Hence, dataset has 3 columns namely, Date, Month and Year_Temp. (Refer screenshot below)

I need to convert this information to date format (DD/MM/YYYY) to get meaningful reports. How can acheive this?

Thank you,

Venkatesh

 Column-Concatenate.png

 

@VenkateshC

You can create a calculated column as

 

newDate = DATE(Table1[year_temp],Table1[month],Table1[date])

 

and then format it as DD/MM/YYYY

Capture.PNG

View solution in original post

2 REPLIES 2
Eric_Zhang
Employee
Employee

@VenkateshC wrote:

Hi All, 

Good day!

 

I've started working on Power BI since past 2 months. I need some help. 

There is a excel with Date, Month and Year column. This is how I get the excel dump. 

Hence, dataset has 3 columns namely, Date, Month and Year_Temp. (Refer screenshot below)

I need to convert this information to date format (DD/MM/YYYY) to get meaningful reports. How can acheive this?

Thank you,

Venkatesh

 Column-Concatenate.png

 

@VenkateshC

You can create a calculated column as

 

newDate = DATE(Table1[year_temp],Table1[month],Table1[date])

 

and then format it as DD/MM/YYYY

Capture.PNG

Thank you Eric!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Kudoed Authors