Forum Discussion
PowerBINoob24
3 years agoResolver I
Dynamic Text Box - Make Value Blank When Nothing Is Selected
Hi All, I've got a dynamic text box that updates with whatever selection is made in a slicer. My question is, is it possible to have the Dynamic Text Bo be blank until someone selects something in ...
PowerBINoob24
3 years agoResolver I
There is no measure. It just pulls values from a column.
lukiz84
3 years agoMemorable Member
Then how should this work? Use a measure instead.
- PowerBINoob243 years agoResolver I
I'm pulling in text, not numbers. Not sure how one turns text into a measure.
- grandtotal3 years agoResolver III
you need to have a measure for this, like:
SELECTEDVALUE(<columnName>[, <alternateResult>])
It returns the value when the context for columnName has been filtered down to one distinct value only. Else, alternateResult.
https://learn.microsoft.com/en-us/dax/selectedvalue-function
- PowerBINoob243 years agoResolver I
Okay....so I would have the alternate result be be the blank, correct?