Forum Discussion
stribor45
Post Prodigy
1 year agoCreative Ways to Express Sum (table/matrix visual
Is there a creative ways to express following idea. As an example say that we need to reach goal of $2000 worth of tickets. For each row in column amount to fill it with color until it reaches the ...
- 1 year ago
I was able to resolve this by grouping card and pie chart together
Irwan
Super User
1 year agohello stribor45
i might be wrong but if you are looking for conditional formating for auto total value in table visual, i doubt there is an option to do conditional formating.
i am not sure how your data looks like but if i have to create this, i would create Total value as row value.
1. Create calculate columns for 'Tickets' and 'Amounts'
Tickets =
IF(
'Table'[Ticket Type]="Total",
SUM('Table'[Number of Tickets]),
'Table'[Number of Tickets]
)
Amounts =
IF(
'Table'[Ticket Type]="Total",
SUM('Table'[Amount]),
'Table'[Amount]
)
2. create a measure for Total color and assign the color
Total Color =
IF(
SELECTEDVALUE('Table'[Ticket Type])="Total",
"Red"
)
3. disable Total so it will not show Total value
4. if needed, put rank in table visual as sort value so Total will always be in the bottom.
i am awared this is not perfect but this is one of many tricks.
Hope this will help.
Thank you.