Forum Discussion
AlexITRelation
6 years agoFrequent Visitor
Summing total columns
Hi all, I've a problem regardring PowerBI, which I've tried to illustrate in excel. I've a matrix with Department in rows and Priority in columns and Low, Medium, High and SUM in values. My p...
Anonymous
6 years agoNot applicable
Perhaps you can return BLANK() if there is a filter on Priority and oterwise return the value?
Measure = IF (ISFILTERED('Table'[Priority]); BLANK(); [MySumMeasure])