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
Anonymous
Not applicable

Create new row based on previous row and sum the values

Hi Everyone,

 

I'm striving to create report based on the below input:

 

 Input.JPG

 

Criteria:

For every Emp Id in table should create one new row (refering above row details like proj Code, Hrs Leaves and Actual Hrs) & it should sum Unbilled(if available) + Leaves columns of respective Emp in Tot Hrs column. At same time, status column should display with 0.

 

Below is out:

 

Output.JPG

 

Could you please help me to acheive this.

 

Regards,

Arjun

 

1 ACCEPTED SOLUTION
v-yulgu-msft
Employee
Employee

Hi @Anonymous,

 

Please new calculated tables with below DAX formulas: (suppose source table is called 'Test3')

Test3_1 =
SUMMARIZE (
    SELECTCOLUMNS (
        Test3,
        "Emp ID", Test3[Emp ID],
        "Proj Code", Test3[Proj Code],
        "Hrs", Test3[Hrs],
        "Leaves", Test3[Leaves],
        "Actual Hrs", Test3[Actual Hrs],
        "Tot Hrs", 0,
        "Unbilled", 0,
        "Status", 0
    ),
    [Emp ID],
    [Proj Code],
    "Hrs", AVERAGE ( Test3[Hrs] ),
    "Leaves", AVERAGE ( Test3[Leaves] ),
    "Actual Hrs", AVERAGE ( Test3[Actual Hrs] ),
    "Tot Hrs", 0,
    "Unbilled", 0,
    "Status", 0
)

Test3_2 =
UNION ( Test3, Test3_1 )

Test3_3 =
ADDCOLUMNS (
    SUMMARIZE (
        Test3_2,
        Test3_2[Emp ID],
        Test3_2[Proj Code],
        Test3_2[Status],
        "Hrs", AVERAGE ( Test3_2[Hrs] ),
        "Leaves", AVERAGE ( Test3_2[Leaves] ),
        "Actual Hrs", AVERAGE ( Test3_2[Actual Hrs] ),
        "Tot Hrs", SUM ( Test3_2[Tot Hrs] ),
        "Unbilled", SUM ( Test3_2[Unbilled] )
    ),
    "Final Tot Hours", IF ( Test3_2[Status] = 0, [Leaves] + [Unbilled], [Tot Hrs] )
)

1.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
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
v-yulgu-msft
Employee
Employee

Hi @Anonymous,

 

Please new calculated tables with below DAX formulas: (suppose source table is called 'Test3')

Test3_1 =
SUMMARIZE (
    SELECTCOLUMNS (
        Test3,
        "Emp ID", Test3[Emp ID],
        "Proj Code", Test3[Proj Code],
        "Hrs", Test3[Hrs],
        "Leaves", Test3[Leaves],
        "Actual Hrs", Test3[Actual Hrs],
        "Tot Hrs", 0,
        "Unbilled", 0,
        "Status", 0
    ),
    [Emp ID],
    [Proj Code],
    "Hrs", AVERAGE ( Test3[Hrs] ),
    "Leaves", AVERAGE ( Test3[Leaves] ),
    "Actual Hrs", AVERAGE ( Test3[Actual Hrs] ),
    "Tot Hrs", 0,
    "Unbilled", 0,
    "Status", 0
)

Test3_2 =
UNION ( Test3, Test3_1 )

Test3_3 =
ADDCOLUMNS (
    SUMMARIZE (
        Test3_2,
        Test3_2[Emp ID],
        Test3_2[Proj Code],
        Test3_2[Status],
        "Hrs", AVERAGE ( Test3_2[Hrs] ),
        "Leaves", AVERAGE ( Test3_2[Leaves] ),
        "Actual Hrs", AVERAGE ( Test3_2[Actual Hrs] ),
        "Tot Hrs", SUM ( Test3_2[Tot Hrs] ),
        "Unbilled", SUM ( Test3_2[Unbilled] )
    ),
    "Final Tot Hours", IF ( Test3_2[Status] = 0, [Leaves] + [Unbilled], [Tot Hrs] )
)

1.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Thank you @v-yulgu-msft, for the solution.

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.