Greetings all,
I would like to get something like the following heatmap that does not involve time series. Am I due for starting to learn to create my own plugin?
This currently is in powerbi.
Thanks
Greetings all,
I would like to get something like the following heatmap that does not involve time series. Am I due for starting to learn to create my own plugin?
This currently is in powerbi.
Thanks
You can achieve this with the built-in table panel and the new Grouping to matrix
transform.
For example, with this data:
Probability,Impact,Value
81-100,1,0
61-80,1,0
41-60,1,0
21-40,1,0
0-20,1,0
81-100,2,0
61-80,2,1
41-60,2,0
21-40,2,2
0-20,2,0
81-100,3,1
61-80,3,2
41-60,3,2
21-40,3,2
0-20,3,0
81-100,4,2
61-80,4,0
41-60,4,2
21-40,4,0
0-20,4,1
81-100,5,0
61-80,5,2
41-60,5,2
21-40,5,0
0-20,5,0
You get the following:
Yes!!! Thanks very much