Forum Discussion
AllanBerces
4 months agoPost Prodigy
Wrong Total
Hi can anyone help me correct the column total on my table, my measure is
Count S-01 =
COUNTROWS(
FILTER(
'Table',
MONTH('Table'[01]) = MONTH(MIN('Table'[01]))
)
)
and
Count S-02 =
COUNTROWS(
FILTER(
'Table',
MONTH('Table'[02]) = MONTH(MIN('Table'[02]))
)
)
they are connected to my index month table
Thnak you
Hi AllanBerces
Can you try this
Count S-01 =
SUMX(
VALUES('Month Table'[Month]),
CALCULATE(COUNTROWS(FILTER('Table', MONTH('Table'[01]) = SELECTEDVALUE('Month Table'[Month Index])))))
3 Replies
- krishnakanth240Super User
Hi AllanBerces
Can you try this
Count S-01 =
SUMX(
VALUES('Month Table'[Month]),
CALCULATE(COUNTROWS(FILTER('Table', MONTH('Table'[01]) = SELECTEDVALUE('Month Table'[Month Index])))))- AllanBercesPost Prodigy
Hi krishnakanth240 thank you very much work as i need
- krishnakanth240Super User
You are welcome AllanBerces !