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! Request now

Reply
summer18
Helper III
Helper III

Sum of Distinct Values over Total Distinct by Category

Hi,

I need assistance on the formula for computing % of new products over total.  I could not achieve the desired output.

Formula should be New Product Count / Total by Region. 

Eg.  for Asia and Enterprise = 7 / 113 (total for Asia) = 6.19%

 

wrongpercent01.png

Correct %:

wrongpercent02.png

 

The formulas I used:

1) Count of NEW Products = 

CALCULATE(

                  DISTINCTCOUNT(DATA[ProductID]),

                  DATA[Status] IN {"New"})

2) Total Count of Products =
SUMX(
          KEEPFILTERS(VALUES(DATA[Region])),
          CALCULATE(DISTINCTCOUNT(DATA[ProductID]))
)

3)  % New Products = IFERROR([Count of NEW Products]/[Total Count of Products],0)

 

Attaching the links for the pbix and sample data with computation.

https://drive.google.com/drive/folders/1d1ivWVWhnNzfcUGdseXiTY71pldhct5M?usp=sharing

 

Thanks in advance for your help.

 

Regards,

Summer

 

1 ACCEPTED SOLUTION
Icey
Community Support
Community Support

Hi @summer18 ,

 

Try this:

% New Products =
IFERROR (
    [Count of NEW Products]
        / CALCULATE ( [Total Count of Products], ALLSELECTED ( DATA[Segment] ) ),
    0
)

product.JPG

 

 

Best regards

Icey

 

If this post helps, then consider Accepting it as the solution to help other members find it faster.

View solution in original post

6 REPLIES 6
amitchandak
Super User
Super User

@summer18 , I think there some different data in pbix. Can you please check.

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Hi @amitchandak , Thanks for checking into this.  I updated the link

 

https://drive.google.com/drive/folders/1d1ivWVWhnNzfcUGdseXiTY71pldhct5M?usp=sharing

 

Icey
Community Support
Community Support

Hi @summer18 ,

 

I have no access to your shared file. Please share it publicly.

 

 

Best Regards,

Icey

Hi @Icey , I just made the link public.  Hope you can help me on this

 

Icey
Community Support
Community Support

Hi @summer18 ,

 

Try this:

% New Products =
IFERROR (
    [Count of NEW Products]
        / CALCULATE ( [Total Count of Products], ALLSELECTED ( DATA[Segment] ) ),
    0
)

product.JPG

 

 

Best regards

Icey

 

If this post helps, then consider Accepting it as the solution to help other members find it faster.

Thanks @Icey .  It works!

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

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!

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