Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
Anonymous
Not applicable

CALCULATE based on filters in each columns and sum of each returned value.

Can you suggest what I'm doing wrong here.

 

I want to count string "Primary" from different columns.

 

TotalPrimarySupervison = CALCULATE(
COUNTAX(FILTER(Table1,Table1[Primary/Secondary1]="Primary"), Table1[SPE/DGO/school counsellor/psychologist])||
COUNTAX(FILTER(Table1,Table1[Primary/Secondary2]="Primary"), Table1[SPE/DGO/school counsellor/psychologist])||
COUNTAX(FILTER(Table1,Table1[Primary/Secondary3]="Primary"), Table1[SPE/DGO/school counsellor/psychologist])||
COUNTAX(FILTER(Table1,Table1[Primary/Secondary4]="Primary"), Table1[SPE/DGO/school counsellor/psychologist])||
COUNTAX(FILTER(Table1,Table1[Primary/Secondary5]="Primary"), Table1[SPE/DGO/school counsellor/psychologist])||
COUNTAX(FILTER(Table1,Table1[Primary/Secondary6]="Primary"), Table1[SPE/DGO/school counsellor/psychologist]))

 

TotalPrimarySupervison = CALCULATE(
COUNTAX(FILTER(Table1,
Table1[Primary/Secondary1]="Primary" ||
Table1[Primary/Secondary2]="Primary" ||
Table1[Primary/Secondary3]="Primary" ||
Table1[Primary/Secondary4]="Primary" ||
Table1[Primary/Secondary5]="Primary" ||
Table1[Primary/Secondary6]="Primary"),
Table1[SPE/DGO/school counsellor/psychologist]))


TotalPrimarySupervison = CALCULATE(
[....] --?
(FILTER(
Table1,
Table1[Primary/Secondary1]="Primary" ||
Table1[Primary/Secondary2]="Primary" ||
Table1[Primary/Secondary3]="Primary" ||
Table1[Primary/Secondary4]="Primary" ||
Table1[Primary/Secondary5]="Primary" ||
Table1[Primary/Secondary6]="Primary"
)
))

 

Many thanks in advance.

0 REPLIES 0

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.