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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
Anonymous
Not applicable

display INT as a well formatted date SSAS?

I am consuming LIVE from an SSAS cube.

I have my Fact table with the below column:

ovonel_0-1659538607188.png

 

 

When I display it in a matrix visual, in my pbix I get this:

ovonel_1-1659538619827.png

 

 

 

 

But in SSAS I see it as:

ovonel_2-1659538857303.png

 

 

 

 

How can I display it in a nice dd-MMMM-yyyy format?

 

 

 

Ps: the table comes from a ‘sql server’ source with INT data type.

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

Hi @Anonymous ,

 

Please try:

vjianbolimsft_0-1659949323641.png

Output:

vjianbolimsft_1-1659949342900.png

Then create a measure to replace the date

Measure = 
var _year = VALUE(LEFT(MAX('Table_1'[Date]),4))
var _month = VALUE(RIGHT( LEFT(MAX('Table_1'[Date]),6),2))
var _day = VALUE(RIGHT(MAX('Table_1'[Date]),2))
return  FORMAT( DATE(_year,_month,_day),"dd-mmmm-yyyy")

 

Final output:

vjianbolimsft_2-1659949456097.png

Best Regards,

Jianbo Li

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

1 REPLY 1
v-jianboli-msft
Community Support
Community Support

Hi @Anonymous ,

 

Please try:

vjianbolimsft_0-1659949323641.png

Output:

vjianbolimsft_1-1659949342900.png

Then create a measure to replace the date

Measure = 
var _year = VALUE(LEFT(MAX('Table_1'[Date]),4))
var _month = VALUE(RIGHT( LEFT(MAX('Table_1'[Date]),6),2))
var _day = VALUE(RIGHT(MAX('Table_1'[Date]),2))
return  FORMAT( DATE(_year,_month,_day),"dd-mmmm-yyyy")

 

Final output:

vjianbolimsft_2-1659949456097.png

Best Regards,

Jianbo Li

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.