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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not applicable

Employee Manager - Calculated column

Dear All,

 

Looking for your help in below scenario either in calculated column or in M-query form.

 

I have the details as Ename, Role & Mname.

This is a basic query in SQL i.e. a manager can be an employee but all employee cannot be manager. I need to find the list of employees under each manager.

 

So I need to derive a new column in PowerBI which might say if title is manager or not.

Further I can apply row level security for each manager so they can see only the employee under them.

 

Hope you could help me in deriving the last column "Title".

 

Abhi_hgt_0-1601985214568.png

 

 

Regards,

Abhi

1 ACCEPTED SOLUTION

@Anonymous 

I am not sure how you will utilize this field, however, I have modified the code, please check now.

Title = 
VAR _M = 
    CALCULATETABLE( 
        VALUES('Table'[Ename]),
        'Table'[Role] = "Manager"
    )
RETURN

IF( NOT [Ename] IN _M, "SM", BLANK()) 

Fowmy_0-1602052820285.png

________________________

If my answer was helpful, please consider Accept it as the solution to help the other members find it

Click on the Thumbs-Up icon if you like this reply 🙂

YouTube  LinkedIn

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

View solution in original post

5 REPLIES 5
Fowmy
Super User
Super User

@Anonymous 

Not clear about the requirement and the output expected. 

is it a Column like:

Title = IF( [Role] = "Manager", Blank(), "SM")

________________________

If my answer was helpful, please consider Accept it as the solution to help the other members find it

Click on the Thumbs-Up icon if you like this reply 🙂

YouTube  LinkedIn

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Anonymous
Not applicable

I dont think it will work.

Basically I need to display the list of employees under each manager....

@Anonymous 

Add this as a new column:

Title = 
VAR _M = 
    CALCULATETABLE( 
        VALUES('Table'[Ename]),
        'Table'[Role] = "Manager"
    )
RETURN

IF( [Ename] IN _M, 
    CONCATENATEX(
        FILTER( 'Table', 'Table'[Mname] = EARLIER('Table'[Ename])),
        [Ename], "|")

)

Fowmy_0-1601990617750.png

________________________

If my answer was helpful, please consider Accept it as the solution to help the other members find it

Click on the Thumbs-Up icon if you like this reply 🙂

YouTube  LinkedIn

 



Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Anonymous
Not applicable

This is not the output I am looking for. 

I need,

 

Abhi_hgt_0-1602050530908.png

 

@Anonymous 

I am not sure how you will utilize this field, however, I have modified the code, please check now.

Title = 
VAR _M = 
    CALCULATETABLE( 
        VALUES('Table'[Ename]),
        'Table'[Role] = "Manager"
    )
RETURN

IF( NOT [Ename] IN _M, "SM", BLANK()) 

Fowmy_0-1602052820285.png

________________________

If my answer was helpful, please consider Accept it as the solution to help the other members find it

Click on the Thumbs-Up icon if you like this reply 🙂

YouTube  LinkedIn

 

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.