Forum Discussion
Displaying Multiple dates in a Power Bi Matrix Visual
- Anonymous3 years ago
Hi Chris_Leiper ,
If your dates are in different columns, I suggest you to UNPIVOT your table and then create a measure to show date.
Unpivoit>
Measure:
Combine = CONCATENATEX('Table','Table'[Value],"-")Create a calculated table:
Calendar = ADDCOLUMNS(CALENDARAUTO(),"Year Month",YEAR([Date]) * 100 + MONTH([Date]),"Month Year",FORMAT([Date],"MMMM YYYY"))Result is as below.
Best Regards,
Rico ZhouIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Chris_Leiper ,
If your dates are in different columns, I suggest you to UNPIVOT your table and then create a measure to show date.
Unpivoit>
Measure:
Combine = CONCATENATEX('Table','Table'[Value],"-")
Create a calculated table:
Calendar = ADDCOLUMNS(CALENDARAUTO(),"Year Month",YEAR([Date]) * 100 + MONTH([Date]),"Month Year",FORMAT([Date],"MMMM YYYY"))
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thanks for the reply. Anonymous
Do you think it is possible to Format 22/06/2023-23/06/2023 to Thursday 22nd & Friday 23rd?