Forum Discussion
RLSid17
Helper III
3 years agoMatrix 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
Super User
3 years agoYou could likely use ISINSCOPE in the 'Last Update' measure.
Something along the lines of
IF(
ISINSCOPE(SharePoint Status),
"",
[Last Update]
)
Microsoft Learn - DAX - ISINSCOPE