Forum Discussion
powerbityro
6 years agoHelper II
Special Heatmap
Hi all, I am looking for a heatmap in the following structure: Does someone know if that structure is possible in Power BI? For example A has the subcategories 1-13. The first 1...
- 6 years ago
It worked. Many thanks!
v-lid-msft
6 years agoCommunity Support
Hi powerbityro ,
We can try to create two calculated column and use condition format to meet your quirement:
Row Control = ROUNDUP(RANKX(FILTER('Fact Table','Fact Table'[Category] = EARLIER('Fact Table'[Category])), [Sub Category],,ASC,Dense) / 5,0)
Column Control = RANKX(FILTER('Fact Table',[Category] = EARLIER('Fact Table'[Category]) && 'Fact Table'[Row Control] = EARLIER('Fact Table'[Row Control])), 'Fact Table'[Sub Category],,ASC,Dense)
Best regards,
powerbityro
6 years agoHelper II
It worked. Many thanks!