The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I have a matrix visual, in the row field have sales persons and in the values trying to add a measure, the measure is currently defined as below:
Solved! Go to Solution.
IF(DISTINCTCOUNT('Table'[Department ID]) = 1, 0, BLANK()),
pls try this
Measure = LEN(MAX('sales' [persons]))*0
IF(DISTINCTCOUNT('Table'[Department ID]) = 1, 0, BLANK()),
I have taken a look at the link above, I don't think this is what I am look for, the article refers to showing rows with no values, but I am not trying to do this instead I want to show a 0 for every row in the department field inside a matrix, this 0 is hardcoded and does not belong to a column and/or table.