Forum Discussion
mrslyfox911
3 years agoAdvocate III
Adaptive Text field
Hello, I have a table with a test description of parameter IDs. How can I make the description text field appear only when a specific ID is selected in the filter? If the id is not selected, the tex...
- 3 years ago
Hi mrslyfox911 ,
According to your description, here's my solution.
Create a measure:
Measure = IF ( COUNTROWS ( ALLSELECTED ( 'Table'[ID] ) ) = COUNTROWS ( ALL ( 'Table'[ID] ) ), BLANK (), MAX ( 'Table'[TXT] ) )Get the correct result:
I attach my sample below for your reference.
Best Regards,
Community Support Team _ kalyjIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-yanjiang-msft
3 years agoCommunity Support
Hi mrslyfox911 ,
According to your description, here's my solution.
Create a measure:
Measure =
IF (
COUNTROWS ( ALLSELECTED ( 'Table'[ID] ) ) = COUNTROWS ( ALL ( 'Table'[ID] ) ),
BLANK (),
MAX ( 'Table'[TXT] )
)
Get the correct result:
I attach my sample below for your reference.
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.