Forum Discussion
zenton
4 years agoHelper II
Count from summarised row count
Hi, I have a measure to Countrows of summarized data. Results in the table below. I need a measure to show count of the rows that equal 18. So the result should be 4 as per table below Measure 3 ...
tamerj1
4 years agoCommunity Champion
zenton
Ok Then it is easier to hard code it
Measure 4 =
VAR MaxValue = 18
RETURN
SUMX (
SUMMARIZE (
Labware,
Labware[Analyte Name],
Labware[LIMS Text ID],
Labware[Calendar Date]
),
IF ( [Measure 3] = MaxValue, 1, 0 )
)