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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Anonymous
Not applicable

Calculate % based on combination of count and stored values

I have this basic table:

DayNo.CustomerAgentsInvolvedCallID
0AAA11858
0AAA31859
2AAA11860
0BBB21862
0CCC11863
0DDD31864
9DDD11865
9DDD41866

 

I need to be able to find the % of customers who only contacted only once, and spoke to 1 agent only. So from the above example, out of 4 distinct customers only customer CCC falls into this category (1 call, 1 AgentInvolved)

 

So the Desired result would be: 1/4 or 25%

 

How can I create a measure to do this calc?

1 ACCEPTED SOLUTION

Hi @Anonymous,

 

Based your logic, you could try the measures below.

 

CallId_1 =
CALCULATE (
    DISTINCTCOUNT ( Table2[CallID] ),
    ALLEXCEPT ( Table2, 'Table2'[Customer] )
)
Count =
CALCULATE (
    SUM ( 'Table2'[AgentsInvolved] ),
    FILTER ( 'Table2', 'Table2'[AgentsInvolved] = 1 && [CallId_1] = 1 )
)
% = DIVIDE([Count],CALCULATE(DISTINCTCOUNT(Table2[Customer]),ALL(Table2)))

Here is the output.

 

result.PNG

 

Best  Regards,

Cherry

Community Support Team _ Cherry Gao
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

3 REPLIES 3
harslan66
Frequent Visitor

Try this formula

% = DIVIDE(SUM(Table1[AgentsInvolved]),CALCULATE(DISTINCTCOUNT(Table1[Customer]),ALL(Table1[Customer])))

 

Anonymous
Not applicable

Thanks for your reply. However, this wouldnt work as we need to find where AgentsInvolved = 1 and Count(callid) = 1

Hi @Anonymous,

 

Based your logic, you could try the measures below.

 

CallId_1 =
CALCULATE (
    DISTINCTCOUNT ( Table2[CallID] ),
    ALLEXCEPT ( Table2, 'Table2'[Customer] )
)
Count =
CALCULATE (
    SUM ( 'Table2'[AgentsInvolved] ),
    FILTER ( 'Table2', 'Table2'[AgentsInvolved] = 1 && [CallId_1] = 1 )
)
% = DIVIDE([Count],CALCULATE(DISTINCTCOUNT(Table2[Customer]),ALL(Table2)))

Here is the output.

 

result.PNG

 

Best  Regards,

Cherry

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

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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.