Forum Discussion
AllanBerces
Post Prodigy
4 months agoWrong 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
- krishnakanth240
Super 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])))))- AllanBerces
Post Prodigy
Hi krishnakanth240 thank you very much work as i need
- krishnakanth240
Super User
You are welcome AllanBerces !