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
Zaky
Helper IV
Helper IV

Need Help with a Measure Formula

Hi All,

Wondering if someone would able to help me with a correct formula to count column Quantity as per table below. 

I would like to show quantity of each printer model i KPI card. 

 

Model/Description

Code

Quantity

eStudio3540cse

MFP-2

0

eStudio3540cse

MFP-2

0

eStudio3550cse

MFP-2

1

eStudio3500se

MFP-2

1

 

I'm trying to create a new measure for Quantity column but it doesn't work. 

Count MFP = CALCULATE(COUNTA('Printer'[Qty]),'Printer'[Qty]="1"

 

Expected result of the KPI card should counts only printer with the "1" number.

 

Thanks for your time.

2 ACCEPTED SOLUTIONS

Hi @Zaky 

Create a measure

Measure = CALCULATE(COUNTA(Table1[Model/Description]),FILTER(ALL(Table1),Table1[Quantity]=1))

10.png

 

Best Regards
Maggie

 

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

View solution in original post

Hi,

 

can you please try below measure and mark correct if it works.

 

Count = CALCULATE(COUNT(Sheet2[code]),Sheet2[quantity] = 1)
 
Thanks,
Surya teja

View solution in original post

7 REPLIES 7
Anonymous
Not applicable

@Zaky ,

 

Use this formula

 

CountQuantity = CALCULATE(COUNTA(Table1[Model/Description]),FILTER(Table1,Table1[Quantity]="1"))

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

Anonymous
Not applicable

However, to eliminate the Zero counts you will need to use the Visualizations Visual Level Filter to eliminate Zero. 

Hi,

 

I'm trying created the measure, but it's not working.

 

measure1.JPG

Hi @Zaky 

Create a measure

Measure = CALCULATE(COUNTA(Table1[Model/Description]),FILTER(ALL(Table1),Table1[Quantity]=1))

10.png

 

Best Regards
Maggie

 

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

@v-juanli-msft 

Yes..  got it!.  The formula is working as per what i expected.

 

Thank you so much !

 

Regards,

ZAKY

Hi,

 

can you please try below measure and mark correct if it works.

 

Count = CALCULATE(COUNT(Sheet2[code]),Sheet2[quantity] = 1)
 
Thanks,
Surya teja

@suryaburaboyina 

This formula also works accordingly 🙂

 

 

Thanks for help.

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.