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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
sy898661
Helper V
Helper V

which COUNT function to use?

I am trying to create a measure for % On Time Delivery.

 

I have a column that lists the number of days a task takes. Our goal is under 90. I tried writing a measure that was:

 

% OTD = DIVIDE(COUNTAX('board-Query', 'board-Query'[Lot Disposition Duration] < 90), COUNTROWS('board-Query'))

 

But I keep getting 100% or over 100%...which is not true!!! 😞

 

How do I count the number of rows who's values are 90 or less?

 

Thanks 🙂

1 ACCEPTED SOLUTION
Cmcmahan
Resident Rockstar
Resident Rockstar

You're using 'board-Query'[Lot Disposition Duration] < 90 as the expression that you're counting.

 

Try this:

% OTD = DIVIDE(COUNTROWS(FILTER('board-Query', 'board-Query'[Lot Disposition Duration] < 90)), COUNTROWS('board-Query'))

 

View solution in original post

2 REPLIES 2
Cmcmahan
Resident Rockstar
Resident Rockstar

You're using 'board-Query'[Lot Disposition Duration] < 90 as the expression that you're counting.

 

Try this:

% OTD = DIVIDE(COUNTROWS(FILTER('board-Query', 'board-Query'[Lot Disposition Duration] < 90)), COUNTROWS('board-Query'))

 

Thank you 🙂

Helpful resources

Announcements
Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.