Forum Discussion
Advice Please Variation Visual
Hi Anonymous ,
Based on my research, I have found three visuals try to meet your requirements: 'Tornado chart', 'Gauge' and 'Muti-row card'
I have created a calculated column to mark whether someone has left and three measures to calculate the starters, leavers and totals
Leave? =
IF ( 'Table'[Leave_date] <> BLANK (), 1, 0 )Starter =
CALCULATE ( COUNTROWS ( 'Table' ), 'Table'[Leave_date] = BLANK () )Leaver =
CALCULATE ( COUNTROWS ( 'Table' ), 'Table'[Leave_date] <> BLANK () )Total = COUNTROWS('Table')1. Tornado chart
2. Gauge
3. Muti-row card
Here is the sample .pbix file that you can refer: Advice Please Variation Visual.pbix
Best Regards,
Yingjie Li
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
Hi v-yingjl ,
I am getting an error with this column.
- v-yingjl6 years agoCommunity Support
Hi Anonymous ,
In my sample file, the only the 'Leave?' is a calculated column, ohters like starters is a measure. You can try my sample file to create a measure not a calculated column to get it. Not recommend to create muti calculated columns which refer all columns in a table.
Please refer these two articles:
Best Regards,
Yingjie LiIf this post helps then please consider Accept it as the solution to help the other members find it more quickly.