Forum Discussion
RLSid17
3 years agoHelper III
Matrix Column Hide Values when collapsed
Hi, I have a matrix visual here. Is there a way to make the "Last Update" column hide the values until the "Sharepoint Status" is expanded? So when it is viewed like this, the dates...
jgeddes
3 years agoSuper User
You could likely use ISINSCOPE in the 'Last Update' measure.
Something along the lines of
IF(
ISINSCOPE(SharePoint Status),
"",
[Last Update]
)
Microsoft Learn - DAX - ISINSCOPE
- RLSid173 years agoHelper III
I tried this and the [Last Update] column is encountering an error.