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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Jumper
Helper I
Helper I

Filtered calculation range - improving the DAX

Hi all

 

I just created a quick measure but the DAX appears very cumbersome.  I have very litle experience with DAX, so i'm hoping for some help to refine the formula.

 

I got as far adding up to 9 with the quick measure, but when I saw the formula I realised it will be a bit silly counting out all numbers up to the current max (which is around 1500).

Jumper_0-1691555611014.png

 

I basically need three ranges:

- minimum to 60 

- 60 to 100

- 100 to max

 

 

Any suggestions to improve my DAX?

1 ACCEPTED SOLUTION
Tanushree_Kapse
Impactful Individual
Impactful Individual

Hi @Jumper ,

 

You could write something like this:

WIP value 0 t0 60 =
CALCULATE(SUM(fact service WIP daily snapshot[WIP at Sell]), 
fact service WIP daily snapshot[DaysNoLabour] >=0  &&  fact service WIP daily snapshot[DaysNoLabour] <=60)

 

Hope this helps!

Accept this answer as a solution if it solves your query. Kudos are always appreciated!

 

Thanks!

 

View solution in original post

2 REPLIES 2
Jumper
Helper I
Helper I

Perfect!!! Thanks for your help 🙂

Tanushree_Kapse
Impactful Individual
Impactful Individual

Hi @Jumper ,

 

You could write something like this:

WIP value 0 t0 60 =
CALCULATE(SUM(fact service WIP daily snapshot[WIP at Sell]), 
fact service WIP daily snapshot[DaysNoLabour] >=0  &&  fact service WIP daily snapshot[DaysNoLabour] <=60)

 

Hope this helps!

Accept this answer as a solution if it solves your query. Kudos are always appreciated!

 

Thanks!

 

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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