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

Override the previous values of Employee

Hi Everyone,

 

Need help!!!!

My requirement is to override the previous value of employee.

 

Example:

sample Date

Date         Area                            TimeType      Total hours Emp name

9/5/16     Bangalore                    Regula Hours 4                 XYZ
9/5/16      Not assigned                Regula Hours 4               XYZ
9/6/16     Pune                             Regula Hours 6                ABC
9/6/16      Not assigned               Regular hours 3                ABC


Required output should be like this:


Date        Area                                     TimeType               Total hours EMp Name

9/5/16     Bangalore                             Regula Hours       8                   XYZ

9/6/16     Pune                                       Regula Hours      9                  ABC

 

Thanks,

Rajveer

1 ACCEPTED SOLUTION
v-yulgu-msft
Employee
Employee

Hi @Anonymous,

 

You can create a summarized table based on original data table.

Emp Table2 =
SUMMARIZE (
    'Employee Table',
    'Employee Table'[Date],
    "Area", CALCULATE (
        FIRSTNONBLANK ( 'Employee Table'[Area], 1 ),
        'Employee Table'[Area] <> "Not assigned"
    ),
    "TimeType", FIRSTNONBLANK ( 'Employee Table'[TimeType], 1 ),
    "Total hours", SUM ( 'Employee Table'[Totalhours] ),
    "EMp Name", FIRSTNONBLANK ( 'Employee Table'[Emp name], 1 )
)

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

1 REPLY 1
v-yulgu-msft
Employee
Employee

Hi @Anonymous,

 

You can create a summarized table based on original data table.

Emp Table2 =
SUMMARIZE (
    'Employee Table',
    'Employee Table'[Date],
    "Area", CALCULATE (
        FIRSTNONBLANK ( 'Employee Table'[Area], 1 ),
        'Employee Table'[Area] <> "Not assigned"
    ),
    "TimeType", FIRSTNONBLANK ( 'Employee Table'[TimeType], 1 ),
    "Total hours", SUM ( 'Employee Table'[Totalhours] ),
    "EMp Name", FIRSTNONBLANK ( 'Employee Table'[Emp name], 1 )
)

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.

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.