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

Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.

Reply
Anonymous
Not applicable

ETL in Power BI Desktop

I am currently facing a problem in finding a suitable DAX formula for resolving an issue. 

 

ERP report provides information in the format below. It lists all GL first and then cost centre as a sub-total row. 

 

GL Amount
9000 10000
9001 20000
1010 30000
9002 1000
9005 2000
1011 3000

 

I want to transform my table in the format below

 

GL Cost Centre Amount
9000 1010 10000
9001 1010 20000
1010 1010 30000
9002 1011 1000
9005 1011 2000
1011 1011 3000

 

Appreciate if anyone can help

1 ACCEPTED SOLUTION

3 REPLIES 3
Zubair_Muhammad
Community Champion
Community Champion

@Anonymous

 

Give this a shot.

 

First Add an Index Column from Query Editor

 

Then add this calculated column

 

Cost Centre =
VAR GL_Character = 9
VAR Cost_Centre = 1
RETURN
    IF (
        VALUE ( LEFT ( [GL] ) ) = GL_Character,
        MINX (
            TOPN (
                1,
                FILTER (
                    Table1,
                    [Index] > EARLIER ( [Index] )
                        && VALUE ( LEFT ( [GL] ) ) = Cost_Centre
                ),
                [Index], ASC
            ),
            [GL]
        ),
        [GL]
    )

@Anonymous

 

File attached as well

 

ETL.png

Anonymous
Not applicable

Thank you @Zubair_Muhammad It worked

Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

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