Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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] )
User | Count |
---|---|
97 | |
77 | |
77 | |
47 | |
26 |