Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hello
I have the following measure that calculates the number of students who have made progress. For the 'Entry Grade Mapping' I want to include students if they are "BTEC only" or " Mixed BTEC and A-Levels" but I am not sure how to write this. Can anyone help? Thank you very much
Solved! Go to Solution.
Hi @claret_mug ,
Check the formula below. "&&" as "and", "||" as "or".
BTEC + Progression all years =
CALCULATE (
[Total students],
FILTER (
'Table1',
'Table1'[Collaborative Provision Indicator] = "Non-collaborative"
&& 'Table1'[Course length 1 year or less] = "No"
&& 'Table1'[Program level] = "No UG "
&& 'Table1'[Course Mode (FT / PT)] = " Full Time "
&& 'Table1'[Entry Route] = " UCAS / GTTR "
&& 'Table1'[EU Overseas Home Residence] = " Home "
&& ( 'Table1'[Entry Qualification Mapping] = "BTEC Only"
|| 'Table1'[Entry Qualification Mapping] = "Mixed BTEC and A-Levels" )
)
)
Best Regards,
Jay
Hi @claret_mug ,
Check the formula below. "&&" as "and", "||" as "or".
BTEC + Progression all years =
CALCULATE (
[Total students],
FILTER (
'Table1',
'Table1'[Collaborative Provision Indicator] = "Non-collaborative"
&& 'Table1'[Course length 1 year or less] = "No"
&& 'Table1'[Program level] = "No UG "
&& 'Table1'[Course Mode (FT / PT)] = " Full Time "
&& 'Table1'[Entry Route] = " UCAS / GTTR "
&& 'Table1'[EU Overseas Home Residence] = " Home "
&& ( 'Table1'[Entry Qualification Mapping] = "BTEC Only"
|| 'Table1'[Entry Qualification Mapping] = "Mixed BTEC and A-Levels" )
)
)
Best Regards,
Jay
Hi @claret_mug
you can use
With kind regards from the town where the legend of the 'Pied Piper of Hamelin' is at home
FrankAT (Proud to be a Datanaut)
@claret_mug , Not very clear with formula
Or can be like
Table1[Entry Qualification Mapping]="BTEC only" || Table1[Entry Qualification Mapping]="Mixture of BTEC and A-Levels"
OR( Table1[Entry Qualification Mapping]="BTEC only" , Table1[Entry Qualification Mapping]="Mixture of BTEC and A-Levels")
or use in
Table1[Entry Qualification Mapping] in {"BTEC" ,"Mixture of BTEC and A-Levels"}
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 46 | |
| 42 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 190 | |
| 122 | |
| 96 | |
| 66 | |
| 47 |