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

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more

Reply
Anonymous
Not applicable

sql date format to bi

Hi

 

below  is the format  for date sql, can  I show this as date in period in power bi.or I can get only year and month in bi

 

Date Period
202002
202002
202002
202002
202002
1 ACCEPTED SOLUTION
Anonymous
Not applicable

hi @Anonymous - you can use calculated columns to do the same as seen in screen grabs below

 

Year = FORMAT(LEFT(Date_Period[Date Period], 4), "YYYY")
Month = FORMAT(MID(Date_Period[Date Period],5, 2), "MMM")
Date = DATE(Date_Period[Year], Date_Period[Month], 1)

 

Sumanth_23_1-1600245724599.png

 

Sumanth_23_2-1600245745086.png

 

Hardcoding the "Day" of each month as 1 to convert to a date field 

 

Sumanth_23_3-1600245770656.png

 

Please mark the post as a solution and provide a 👍 if my comment helped with solving your issue. Thanks!

 

 

View solution in original post

1 REPLY 1
Anonymous
Not applicable

hi @Anonymous - you can use calculated columns to do the same as seen in screen grabs below

 

Year = FORMAT(LEFT(Date_Period[Date Period], 4), "YYYY")
Month = FORMAT(MID(Date_Period[Date Period],5, 2), "MMM")
Date = DATE(Date_Period[Year], Date_Period[Month], 1)

 

Sumanth_23_1-1600245724599.png

 

Sumanth_23_2-1600245745086.png

 

Hardcoding the "Day" of each month as 1 to convert to a date field 

 

Sumanth_23_3-1600245770656.png

 

Please mark the post as a solution and provide a 👍 if my comment helped with solving your issue. Thanks!

 

 

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.