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

Try your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join 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
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

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.