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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
justalam
Employee
Employee

Help in calculating column value % over the total

Hi All,

 

My data has column values as given below:

 

I need to calculate abandoned% which is total sum of all abandoned cases closed (1100) vs total cases closed (22600)

 

DimCallType.FilterDimCalldisposition.NameCases closed
ActiveAbandoned200
InactiveAbandoned100
ActiveAnswered3500
ActiveAnswered Closed3600
InactiveAnswered100
ExpiredAbandoned100
ActiveAbandoned200
InactiveAbandoned100
ActiveAnswered3500
ActiveAnswered Closed3600
InactiveAnswered100
ExpiredAbandoned100
ActiveAbandoned200
InactiveAbandoned100
ActiveAnswered3500
ActiveAnswered Closed3600
  22600
3 REPLIES 3
Zubair_Muhammad
Community Champion
Community Champion

HI @justalam

 

You can create a MEASURE on this pattern

See the attached file

 

Measure =
DIVIDE (
    CALCULATE (
        SUM ( Table1[Cases closed] ),
        Table1[DimCalldisposition.Name] = "Abandoned"
    ),
    SUM ( Table1[Cases closed] )
)

Regards
Zubair

Please try my custom visuals

How do I get the sum of [DimCalldisposition.Name]='Abandoned'?

Can you help me with this one?

 

We have a measure

 

Phone Response Rates = DIVIDE(CALCULATE(SUM(Consumer_Cube[Total Surveys])),CALCULATE(SUM(Consumer_Cube[Eligible])))

 

Eligible is a calculated column =

Eligible = If(Consumer_Cube[DimMSVoiceDisposition.Survey Disposition Filter]="No Filter",Consumer_Cube[Cases Closed - by First Closed Date],0)

 

We need another measure which is eligible % which should be sum of cases closed vs eligible

Mathematically calculated as sum of Eligible/sum of cases closed *100

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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