Forum Discussion
Measure not counting properly
I have 3 measures:
The first one calculates a students attendance(This one works fine it counts specfic marks which are date stamped and divides by total) -
The second one then looks at the first measure and gives them a Y/N if they are below 96% -
Hi lukeSDM ,
The third is meant to count those who have a Y from the previous measure -<96 = (COUNTROWS(FILTER('Pupil_Data','AttendanceOvertime'[pa y/n]="Y"))).Try to count 'AttendanceOvertime' table, not 'Pupil_Data' table like these:
<96 = COUNTROWS ( FILTER ( 'AttendanceOvertime', [pa y/n] = "Y" ) )<96 = CALCULATE ( DISTINCTCOUNT ( 'AttendanceOvertime'[Student] ), FILTER ( 'AttendanceOvertime', [pa y/n] = "Y" ) )Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
6 Replies
- amitchandakSuper User
lukeSDM , I am not able see the group by/un summarized column of visual.
based on that try
COUNTROWS(FILTER(values('Pupil_Data','AttendanceOvertime'[Group by visual]) , [pa y/n]="Y"))
replace [Group by visual] with correct column
- lukeSDMHelper V
There is no columns they are all measures.
You can see the total in the table of the <96 measure is 5 which is incorrect as in the p/a y/n measure in the table shows more than 5 Y's.
This is how it looks in graph from and all weeks are wrong.
Many thanks,
- amitchandakSuper User
lukeSDM , what you are using on axis ? That is your group by
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
- IceyCommunity Support
Hi lukeSDM ,
The third is meant to count those who have a Y from the previous measure -<96 = (COUNTROWS(FILTER('Pupil_Data','AttendanceOvertime'[pa y/n]="Y"))).Try to count 'AttendanceOvertime' table, not 'Pupil_Data' table like these:
<96 = COUNTROWS ( FILTER ( 'AttendanceOvertime', [pa y/n] = "Y" ) )<96 = CALCULATE ( DISTINCTCOUNT ( 'AttendanceOvertime'[Student] ), FILTER ( 'AttendanceOvertime', [pa y/n] = "Y" ) )Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.