Forum Discussion
Dynamic Text on Button
- 3 years ago
Hi FaisalImam ,
According to your description, here's my solution, create a measure.
Measure = IF ( ISFILTERED ( 'New Sops'[SOP description] ), IF ( COUNTROWS ( VALUES ( 'New Sops'[SOP description] ) ) > 1, "Error", IF ( MAX ( 'New Sops'[Confluence path] ) = BLANK (), "Not available", "click to rediect " ) ), " Choose SOP to view" )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.
- 3 years ago
Hi FaisalImam ,
In a measure, MAX usually used to return the current row, here it can return the correspongding [Confluence path] to the selected [SOP description].
Best Regards,
Community Support Team _ kalyj
Hi FaisalImam ,
According to your description, here's my solution, create a measure.
Measure =
IF (
ISFILTERED ( 'New Sops'[SOP description] ),
IF (
COUNTROWS ( VALUES ( 'New Sops'[SOP description] ) ) > 1,
"Error",
IF (
MAX ( 'New Sops'[Confluence path] ) = BLANK (),
"Not available",
"click to rediect "
)
),
" Choose SOP to view"
)
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.
- FaisalImam3 years ago
Helper I
Can you please explain what is the Max function doing here -
MAX ( 'New Sops'[Confluence path] ) = BLANK (),
- v-yanjiang-msft3 years ago
Community Support
Hi FaisalImam ,
In a measure, MAX usually used to return the current row, here it can return the correspongding [Confluence path] to the selected [SOP description].
Best Regards,
Community Support Team _ kalyj