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
anis_keyna
Frequent Visitor

Issues to convert data type text to date

Hi all,

 

Currently, I'm facing issues in converting data type to date. The data sources are from sql which have varchar data type. As for now, I could not change data type in date from sql. Therefore, I need to find solution to convert data type to directly from power BI. But could not execute as well. This data is use for generate value for my colum field "status". Below are the screenshort for my issues in which currently the data type are in text. 

 

issues.PNG

1 ACCEPTED SOLUTION
v-qiuyu-msft
Community Support
Community Support

Hi @anis_keyna,

 

From the error message, the STATUS is a measure instead of calculated column, right? 

 

You need to use aggregate function in the measure eg: MAX() 

 

STATUS=IF(MAX('Shipment Planning'[ACT_MVT_DATE])<>BLANK(),"3",
IF(MAX('Shipment Planning'[CONT_NO])<>BLANK(),"2",
IF(MAX('Shipment Planning'[CONT_NO])=BLANK(),"1")))

 

If you create a calculated column, then it's fine to use your own DAX. Please refer to this blog:https://www.sqlbi.com/articles/calculated-columns-and-measures-in-dax/

 

In Power BI desktop, to convert TEXT date value to DATE type, you can select the date column, then click below option: 

q1.PNG

 

 

Best Regards,
Qiuyun Yu 

Community Support Team _ Qiuyun Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-qiuyu-msft
Community Support
Community Support

Hi @anis_keyna,

 

From the error message, the STATUS is a measure instead of calculated column, right? 

 

You need to use aggregate function in the measure eg: MAX() 

 

STATUS=IF(MAX('Shipment Planning'[ACT_MVT_DATE])<>BLANK(),"3",
IF(MAX('Shipment Planning'[CONT_NO])<>BLANK(),"2",
IF(MAX('Shipment Planning'[CONT_NO])=BLANK(),"1")))

 

If you create a calculated column, then it's fine to use your own DAX. Please refer to this blog:https://www.sqlbi.com/articles/calculated-columns-and-measures-in-dax/

 

In Power BI desktop, to convert TEXT date value to DATE type, you can select the date column, then click below option: 

q1.PNG

 

 

Best Regards,
Qiuyun Yu 

Community Support Team _ Qiuyun Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thanks ! Its working now

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.