The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hi I am using the card visual as a title for a dashboard. Let's say my data is filtered to included 1/1/2018 - 7/31/2018.
I use the following dax for my title measure:
Title = "Report for "&CONCATENATEX(VALUES(Table[Date]),Table[Date]
But when I do this, the title appears as: "Report for 1/1/2018,1/2/2018,1/3/2018..."
The way I would like it to appear is: "Report for 1/1/2018 - 7/31/2018"
Any ideas on how to achieve this?
Solved! Go to Solution.
What if you simply use MIN and MAX
Title = "Report for " & MIN ( Table[Date] ) & " - " & MAX ( Table[Date] )
What if you simply use MIN and MAX
Title = "Report for " & MIN ( Table[Date] ) & " - " & MAX ( Table[Date] )