Forum Discussion
giorgiokatr
9 years agoHelper V
table with dynamic values (columns)
is it possible in a table to have dynamic values depending on a slicer? Rows will have Branch and values will have different columns each time i select a value from a slicer (eg sales when i...
- Anonymous9 years ago
Hi giorgiokatr,
Sorry, It seems like I have forgot to paste the measures.
field1 =SWITCH([Selected],"Sales",Max(Table[Col1]),"Other",Max(Table[Col3])) field2 =SWITCH([Selected],"Sales",Max(Table[Col2]),"Other",Max(Table[Col4]))
Regards,
Xiaoxin Sheng
Anonymous
9 years agoNot applicable
Hi giorgiokatr,
Sorry, It seems like I have forgot to paste the measures.
field1 =SWITCH([Selected],"Sales",Max(Table[Col1]),"Other",Max(Table[Col3])) field2 =SWITCH([Selected],"Sales",Max(Table[Col2]),"Other",Max(Table[Col4]))
Regards,
Xiaoxin Sheng
Anonymous
8 years agoNot applicable
Is it possible to do this when your measures use different formatting?
I have three measures that my users need to be able to swap out in the same field. This worked for the first two, which are the same format (whole number), but the third value is a percentage. Using this process I've only been able to keep all in the same format (whole number or percent for all).