Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
On the Attribute column, i have mixed data types. And I want to keep all in Attribute column for matrix visual.
I want to change date (only) to
MM-dd-yyyy format.
how can I do that ? See attached pic.
Solved! Go to Solution.
Hi, @Sejal
After testing, the date and text column format in the same column will be unified as Text. You can format dates, but text cannot coexist. Unfortunately, this is by design. Power BI is now unable to achieve what you need. You can try the following methods.
Column:
Column = IF ( NOT ISERROR ( VALUE ( 'Table'[Attribute] )),
FORMAT ( DATEVALUE ( 'Table'[Attribute] ), "mm-dd-yyyy" ),
'Table'[Attribute])
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Sejal
After testing, the date and text column format in the same column will be unified as Text. You can format dates, but text cannot coexist. Unfortunately, this is by design. Power BI is now unable to achieve what you need. You can try the following methods.
Column:
Column = IF ( NOT ISERROR ( VALUE ( 'Table'[Attribute] )),
FORMAT ( DATEVALUE ( 'Table'[Attribute] ), "mm-dd-yyyy" ),
'Table'[Attribute])
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 84 | |
| 49 | |
| 37 | |
| 30 | |
| 30 |