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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Snowy34
Helper III
Helper III

Better Measure options?

Good afternoon all,

 

I'm using the below measure to get a sum but I'm using the same measure 11 times and I was hoping I could maybe use one to give me the same information...

 

measure 1

1 Day 249 =
CALCULATE(
    DISTINCTCOUNT('DOP-055'[Order No]),
    'DOP-055'[Overall Performance 249] IN { 1 }
)
 
measure 2
1 Day 222 =
CALCULATE(
    DISTINCTCOUNT('DOP-055'[Order No]),
    'DOP-055'[Overall Performance 222] IN { 1 }
)
 
Regards 
1 ACCEPTED SOLUTION

Hi @Snowy34 ,

 

Are you want the sum of [222] for each [Warehouse]?

If so, you just need to create a slicer base on [Warehouse] and refer the below measure to modify your measure:
Overall Performance =
VAR a =
CALCULATE (
SUM ( 'Date Table formula'[222] ),
FILTER (
'Date Table formula',
AND (
'Date Table formula'[DayMonthYear] >= 'DOP-055'[Customer Requested Date],
'Date Table formula'[DayMonthYear] <= 'DOP-055'[Depature Date.1] - 1
)
)
)
RETURN
IF ( ISBLANK ( a ), "NA", a )
The result would be shown as below:

1.PNG

2.PNG3.PNG

Hopefully works for you.

 

Best Regards,

Jay

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.

View solution in original post

5 REPLIES 5
v-jayw-msft
Community Support
Community Support

Hi @Snowy34 ,

 

If I understand you correctly, please use Unpivot function in Query Editor.
Here’s my sample data:

1.PNG

Please check following steps as below and see if the result achieve your expectation:

1. Unpivot table and apply change:

2.PNG

    Result would be shown as below:

3.PNG

2. Create measure:

    Measure = DISTINCTCOUNT('Table (2)'[No])

3. Create slicer to filter data:

4.PNG5.PNG

Hopefully works for you.

 

Best Regards,

Jay

 

Community Support Team _ Jay Wang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.

Good day @v-jayw-msft 

 

The issue with that suggestion is my the data on that table is generated using the below column so it doesn't show up in the queries editor. 

 

Overall Performance 249 = IF('DOP-055'[Warehouse]="249",CALCULATE(SUM('Date Table formula'[222]),FILTER('Date Table formula',AND('Date Table formula'[DayMonthYear]>='DOP-055'[Customer Requested Date],'Date Table formula'[DayMonthYear]<='DOP-055'[Depature Date.1]-1))))
 
Also, aside question regarding the above formula, I would like to add also a return of 'NA' if the result is returned as BLANK, how would I add that into this formula.

Hi @Snowy34 ,

 

Are you want the sum of [222] for each [Warehouse]?

If so, you just need to create a slicer base on [Warehouse] and refer the below measure to modify your measure:
Overall Performance =
VAR a =
CALCULATE (
SUM ( 'Date Table formula'[222] ),
FILTER (
'Date Table formula',
AND (
'Date Table formula'[DayMonthYear] >= 'DOP-055'[Customer Requested Date],
'Date Table formula'[DayMonthYear] <= 'DOP-055'[Depature Date.1] - 1
)
)
)
RETURN
IF ( ISBLANK ( a ), "NA", a )
The result would be shown as below:

1.PNG

2.PNG3.PNG

Hopefully works for you.

 

Best Regards,

Jay

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.

Thank you @v-jayw-msft  for helping I got it working the way i want 🙂 

Snowy34
Helper III
Helper III

Good day all,

 

Here is an example of how the data looks like, in this case I would need two measure and in my case, I have 11 

uM1pEua

 

 

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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