Forum Discussion
Morten_Knudsen
May 24, 2019Brass Contributor
Dashboard not showing actual value, but shows 1K - how can I change to actual value
I'm using the Number tile When numbers are >1000, it will change to 1K - instead of actual value 1136. How can I change so it will so actual number - it is critical to me
CliveWatson
May 24, 2019Former Employee
For Azure Dashboards, I workaround this by changing the result to a text string, obviously at the final stage after any calculations are over. e.g.
| project tostring(BilledGB)
- Morten_KnudsenMay 24, 2019Brass Contributor
CliveWatson Thank you for your answer, but I just tested it - and none of the OVERVIEW TILES (Number, Two Number, Donut, etc) accepts a STRING value, only numbers
- CliveWatsonMay 24, 2019Former EmployeeSorry, I thought this was an Azure Dashboard, but I think your showing a View Designer tile. I'd suggest you look at Azure Dashboards or workbooks...
- Morten_KnudsenMay 24, 2019Brass Contributor
CliveWatson Thanks again Clive. We are getting close, but Azure Dashboard is new to me. I ahve been using View Designer so far.
I have a simple query I would like to show on my dashboard with a single number.
When I Edit my dashboard, I have the option to add 25 tiles from the gallery dashboard. Which of them would give me either Single number or Two Numbers query.
A simple Query could be:
Heartbeat| where TimeGenerated > ago(31d)| summarize hint.strategy=partitioned arg_max(TimeGenerated, *) by Computer| summarize total=count(Computer)| project tostring(total)