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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
wnicholl
Resolver II
Resolver II

Converted Date Field (Incorrect Day Showing)

I converted source data field (yyyymmdd) "ACEFDT" using the following formula to create a calculated column to show (mm/dd/yyyy).  The calculated column show the year and month as being corrcet, but the day is not corrcet.  I'm not sure if it's my calculation or how the source field is structured. Any help would be great. Thanks in advance!

 

Formula:  Effective Date = DATE(LEFT(AISCVGP[ACEFDT],4),MID(AISCVGP[ACEFDT],5,2),LEFT(AISCVGP[ACEFDT],2))

 

Source Date Field (ACEFDT)

Source data field "ACEFDT" Format and Data Type are set as "Text"Source data field "ACEFDT" Format and Data Type are set as "Text"

 

Calculated Column Field (Effective Date) 

Calculated column showing incorrcet day. The year and month are corrcet..PNG

1 ACCEPTED SOLUTION

I was able to resolve my date issue. The below process was  used in power query. Thanks again for your insights. 

 

1) Changed source field to TEXT
2) Created a custom column and used M-code // Text.BeforeDelimiter([ACEFDT], " ")) //
3) Changed new column to Date format

View solution in original post

7 REPLIES 7
grantsamborn
Solution Sage
Solution Sage

Try this:

Effective Date = DATE(LEFT(AISCVGP[ACEFDT],4),MID(AISCVGP[ACEFDT],5,2),RIGHT(AISCVGP[ACEFDT],2))

 

 

Thanks for the reply.  Unfortunately the formaula is not working for me. 

 

Error.PNG

Hi @wnicholl 

Sorry about that.  How about this?

 

Effective Date = 
DATE(
	VALUE( LEFT( AISCVGP[ACEFDT], 4) ),
	VALUE( MID( AISCVGP[ACEFDT], 5, 2) ),
	VALUE( RIGHT( AISCVGP[ACEFDT], 2) )
)

 

I was able to resolve my date issue. The below process was  used in power query. Thanks again for your insights. 

 

1) Changed source field to TEXT
2) Created a custom column and used M-code // Text.BeforeDelimiter([ACEFDT], " ")) //
3) Changed new column to Date format

HotChilli
Community Champion
Community Champion

The formula is incorrect. Check the last section.

However, this will convert to a date in Power Query simply by changing the type (i.e. without the convoluted formula) 

I was able to resolve my date issue. The below process was  used in power query. Thanks again for your insights. 

 

1) Changed source field to TEXT
2) Created a custom column and used M-code // Text.BeforeDelimiter([ACEFDT], " ")) //
3) Changed new column to Date format

Thanks for the reply. I'm entirely sure what the best method is to convert the date field in power query, but I tried to convert the field to a text then changing back to a date field in power query and that's did not work for me.  

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.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

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.