Forum Discussion
sayali_deshmukh
6 years agoHelper III
Dynamic values in bar graph based on selection - Daily & Cumulative
I have table with separate columns for Daily and Cumulative values Need help for creating a bar graph to show Daily or Cumulative values according to selection
- 6 years ago
Define one table with a selection values
example
SelectionTable
Item Daily Cumulative Then switch your column/measure based on the slicer selection.
Try something similar to below.
Measure = VAR _item = SELECTEDVALUE ( SelectionTable[Item] ) VAR result = SWITCH ( TRUE (), _item = "Daily", SUM ( 'Table'[DailyValue] ), _item = "Cumulative", SUM ( 'Table'[CumulativeValue] ) ) RETURN result
Did I answer your question? Mark my post as a solution!
Appreciate with a kudos ๐
nandukrishnavs
6 years agoCommunity Champion
Define one table with a selection values
example
SelectionTable
| Item |
| Daily |
| Cumulative |
Then switch your column/measure based on the slicer selection.
Try something similar to below.
Measure =
VAR _item =
SELECTEDVALUE ( SelectionTable[Item] )
VAR result =
SWITCH (
TRUE (),
_item = "Daily", SUM ( 'Table'[DailyValue] ),
_item = "Cumulative", SUM ( 'Table'[CumulativeValue] )
)
RETURN
result
Did I answer your question? Mark my post as a solution!
Appreciate with a kudos ๐