Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I have this measure:
Summary = "A total of " + [Total_risks] + " risks have been identified. Of these risks " + [Total_Closed_Risks] + " have been closed. With " + [Total_Open_risks] + " still open and ongoing."
It uses a couple of other measures to produce a dynamic string based on the number of risks for that customer.
What visulisation can i use that will display the string as formatted above?
I have tried a card, but that doesn't work. I have tried using a text box and adding a value that links to the measure. But nothing seems to work.
Any ideas?
Solved! Go to Solution.
This works perfectly fine in a card, please see below.
Thanks i was using "+" instead of "&" changing that made it work!
Hi @Rince91 - Dynamic string you've created in your measure as a visualization, you can use a table or matrix visualization in power bi report.
Try as below:
Summary = "A total of " & FORMAT([Total_risks], "0") & " risks have been identified. Of these risks " & FORMAT([Total_Closed_Risks], "0") & " have been closed. With " & FORMAT([Total_Open_risks], "0") & " still open and ongoing."
Make sure that the calculated field is formatted as text/string in your visualization settings.
Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!
Proud to be a Super User! | |
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
147 | |
85 | |
66 | |
52 | |
46 |
User | Count |
---|---|
215 | |
90 | |
83 | |
66 | |
58 |