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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
u4us1923
Frequent Visitor

it's a simple question.

Hello.. 

 

I have a table such as below. I want to subtract the failed call from the total call and put the result in a new row (success_call).

Can anyone who has information about this subject help me?

 

Call TypeCount 
total_call10000 
Failed_call100 
Success_Call9900 new rows
1 ACCEPTED SOLUTION
dufoq3
Super User
Super User

Hi @u4us1923, you can do this easily in Excel but here you go:

 

dufoq3_0-1713367568221.png

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WKskvScyJT07MyVHSUTI0AAKlWJ1oJbfEzJzUFCRxpdhYAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [#"Call Type" = _t, Count = _t]),
    ChangedType = Table.TransformColumnTypes(Source,{{"Count", type number}}),
    Ad_SuccessCall_Row = Table.InsertRows(ChangedType, 2, {
        [ Call Type = "Success_Call", 
          Count = [ t = Table.SelectRows(ChangedType, (x)=> Text.Contains(x[Call Type], "total", Comparer.OrdinalIgnoreCase))[Count]{0}?,
                    f = Table.SelectRows(ChangedType, (x)=> Text.Contains(x[Call Type], "failed", Comparer.OrdinalIgnoreCase))[Count]{0}?,
                    result = t-f
                  ][result]
        ] } )
in
    Ad_SuccessCall_Row

Note: Check this link to learn how to use my query.
Check this link if you don't know how to provide sample data.

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @u4us1923 

Did the solution @dufoq3  provided help you solve the problem, if it helps, please consider to mark it as a solution or you can offer more information.

 

Best Regards!

Yolo Zhu

dufoq3
Super User
Super User

Hi @u4us1923, you can do this easily in Excel but here you go:

 

dufoq3_0-1713367568221.png

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WKskvScyJT07MyVHSUTI0AAKlWJ1oJbfEzJzUFCRxpdhYAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [#"Call Type" = _t, Count = _t]),
    ChangedType = Table.TransformColumnTypes(Source,{{"Count", type number}}),
    Ad_SuccessCall_Row = Table.InsertRows(ChangedType, 2, {
        [ Call Type = "Success_Call", 
          Count = [ t = Table.SelectRows(ChangedType, (x)=> Text.Contains(x[Call Type], "total", Comparer.OrdinalIgnoreCase))[Count]{0}?,
                    f = Table.SelectRows(ChangedType, (x)=> Text.Contains(x[Call Type], "failed", Comparer.OrdinalIgnoreCase))[Count]{0}?,
                    result = t-f
                  ][result]
        ] } )
in
    Ad_SuccessCall_Row

Note: Check this link to learn how to use my query.
Check this link if you don't know how to provide sample data.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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