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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
mifrasmm
Helper I
Helper I

DAX FUNCTION FILTER

HI,

 

i m having a table with below values, I need a count the equip id  row 's using filter Return_status ='NO' & REMARK1='DELIVERY'  & result value need - with consent value 100

 Please can u help

 

EQUIP_IDEQUIP_TYPERETURN_STATUSREMARK1
L 10573VanNODELIVERY
m 67692VanNODELIVERY
k 77921VanNODELIVERY
l 90507VanYESDELIVERY
f 88162TruckNOLOADING
k 69179VanNODELIVERY
d 22581TruckYESLOADING
p 21886VanNODELIVERY
1 ACCEPTED SOLUTION
Anonymous
Not applicable

You were sooo close.  All you need to do is make use of the OR function.  So the code would read:

 

Available = CALCULATE(
        COUNTA(EquipLive[EQUIP_ID]),
	OR(
		'EquipLive'[REMARK1]="DELIVERY",
		'EquipLive'[REMARK1]="LOADING"
	),
	'EquipLive'[RETURN_STATUS]="NO"
)

View solution in original post

6 REPLIES 6
Anonymous
Not applicable

Here is what i'd write.  This is off the top of my head so you might need to put it into your Power BI and get it to check for errors:

Equip Count = Calculate(
	counta('TableName'[EQUIP_ID}),
	'TableName'[RETURN_STATUS] = "NO",
	'TableName'[REMARK1] = "DELIVERY"
)

Where 'TableName' is the name of the table that you are using

EDIT:  I should note this is intended as a measure.

 

Hi Ross,

 

Thanks for replying , its working

 if i want include "LOADING " as well, I tried 

 

Available = CALCULATE(COUNTA(EquipLive[EQUIP_ID]),'EquipLive'[REMARK1]="DELIVERY",'EquipLive'[REMARK1]="LOADING", 'EquipLive'[RETURN_STATUS]="NO")

 

Giving no result , Please help

Anonymous
Not applicable

You were sooo close.  All you need to do is make use of the OR function.  So the code would read:

 

Available = CALCULATE(
        COUNTA(EquipLive[EQUIP_ID]),
	OR(
		'EquipLive'[REMARK1]="DELIVERY",
		'EquipLive'[REMARK1]="LOADING"
	),
	'EquipLive'[RETURN_STATUS]="NO"
)

Thanks Ross for help.

OR fucntion can create max 2 arguments , if i want add one more is there any  option

Anonymous
Not applicable

You are able to nest OR within OR.  If you remember doing Algrabra at school, it works like that where you resolve the innerparts of the equation and work outwards.  So lets say you had 8 things to OR, you could have a statement like:
OR(OR(OR(OR(OR(OR(OR(1,2),3),4),5),6),7),8)

it would resolve like:
Does 7 = OR(OR(OR(OR(OR(OR(OR(1,2),3),4),5),6),7),8)
OR(OR(OR(OR(OR(OR(FALSE,3),4),5),6),7),8)
OR(OR(OR(OR(OR(FALSE,4),5),6),7),8)
OR(OR(OR(OR(FALSE,5),6),7),8)
OR(OR(OR(FALSE,6),7),8)
OR(OR(FALSE),7),8)
OR(TRUE,8)
TRUE

Thanks Ross, Go it 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors