Forum Discussion
Anonymous
4 years agoNot applicable
Show/hide matrix items with conditional formating
I have a matrix that shows results from a checklist. The matrix is divided in 3 levels, nested in this order: Bussiness Area, Audit Area and Question. I have a comments column that I would like to f...
- 4 years ago
Hi,
instead of column "Comment" in the Value box use measure:
New Comment = IF (ISFILTERED ( Checklist[Question] ),SELECTEDVALUE ( Checklist[Comment] )
)Should be enough to fix the issue.
ikor42
4 years agoRegular Visitor
Hi,
instead of column "Comment" in the Value box use measure:
New Comment = IF (
ISFILTERED ( Checklist[Question] ),
SELECTEDVALUE ( Checklist[Comment] )
)
)
Should be enough to fix the issue.
- Anonymous4 years agoNot applicable