Forum Discussion
Anonymous
5 years agoNot applicable
Interactive Measure Dashboard
Hi Deveiopers, Is there anyway or is it possible to have a interactive measure? Dashboard Scenario Filter : Date 1 Date 2 Measure scenario If I choose Date 1 Filter the visu...
- Anonymous5 years ago
HI Anonymous,
You can write measure expression with if statement to check the current filter effect and navigate to different results. If you mean to create a calculated column/table based on filter selection, it is impossible.
Regards,
Xiaoxin Sheng
amitchandak
5 years agoSuper User
Anonymous , Not very clear. You can have table with Date 1 and Date 2 has row values
assume slicer
a new measures
example measure
Switch(selectedvale(Slicer[slicer])
"Date 1" , calculate(countrows(Table), filter(Table, Table[Date1] = today())) ,
"Date 2" , calculate(countrows(Table), filter(Table, Table[Date2] = today()))
)