Forum Discussion
CK1992
Helper II
3 years agoUser input to be used as a DAX Variable
Hi team, I hope you are well. I was wondering if there is a way to create a user input and then use it in my DAX. Please see the example below. In the report page of my PBI, let's say...
- 3 years ago
CK1992 , You can create an independent table with values Yes and No and use that to measure
if(selectedvalue(Table[Column]), "Yes", [Measure], blank())
amitchandak
Super User
3 years agoCK1992 , You can create an independent table with values Yes and No and use that to measure
if(selectedvalue(Table[Column]), "Yes", [Measure], blank())