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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Satya_04
Helper I
Helper I

Data transformation

Hi, 

 

I would need help on the following:

1. Convert nos. into billions. Some of them are in millions and some in billions. I would need to convert only millions to billions.

2. Calculate percentage of total for serial title. Records here are tagged to Assets and Liabilities. I would need to find serial title of an asset as a percentage of total assets. Let us say bank credit as % of total assets.

 

Satya_04_0-1679551499634.png

 

1 ACCEPTED SOLUTION

Hi @Satya_04 ,

 

My Sample:

vrzhoumsft_0-1680081458907.png

Calculated column:

Convert to Billions = 
IF('Table'[units] = "Billions of U.S. Dollars",'Table'[value],'Table'[value]/1000)

Measure:

Percentage Grouped by banks for Asset = 
VAR _Total =
    CALCULATE (
        SUM ( 'Table'[Convert to Billions] ),
        FILTER (
            ALLEXCEPT ( 'Table', 'Table'[banks] ),
            'Table'[series_title] = "Total Assets"
        )
    )
VAR _Value =
    CALCULATE (
        SUM ( 'Table'[Convert to Billions] ),
        FILTER (
            ALLEXCEPT ( 'Table', 'Table'[series_title], 'Table'[banks] ),
            'Table'[A/L] = "Asset"
        )
    )
RETURN
    DIVIDE ( _Value, _Total )

Result is as below.

vrzhoumsft_1-1680081503515.png

Best Regards,
Rico Zhou

 

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

2 REPLIES 2
Satya_04
Helper I
Helper I

@amitchandak Please help

Hi @Satya_04 ,

 

My Sample:

vrzhoumsft_0-1680081458907.png

Calculated column:

Convert to Billions = 
IF('Table'[units] = "Billions of U.S. Dollars",'Table'[value],'Table'[value]/1000)

Measure:

Percentage Grouped by banks for Asset = 
VAR _Total =
    CALCULATE (
        SUM ( 'Table'[Convert to Billions] ),
        FILTER (
            ALLEXCEPT ( 'Table', 'Table'[banks] ),
            'Table'[series_title] = "Total Assets"
        )
    )
VAR _Value =
    CALCULATE (
        SUM ( 'Table'[Convert to Billions] ),
        FILTER (
            ALLEXCEPT ( 'Table', 'Table'[series_title], 'Table'[banks] ),
            'Table'[A/L] = "Asset"
        )
    )
RETURN
    DIVIDE ( _Value, _Total )

Result is as below.

vrzhoumsft_1-1680081503515.png

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

Power BI Carousel June 2024

Power BI Monthly Update - June 2024

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

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.