BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
KarunaT
Fluorite | Level 6

Hi, 

 

I have Employee data in which Employee id and Manager id are present.

An employee can have many levels of Managers for eg. his Manager, his Manager's Manager and so on.

Is there any way by which when I click on Employee, I get the data like

EMP -> his Manager -> his Manager's Manager -> upto the level specified in SAS VA.

 

Thanks in advance!!

Karuna

1 ACCEPTED SOLUTION

Accepted Solutions
FredrikE
Rhodochrosite | Level 12

I usually descide the number of levels possible, let say 10 and then just adds more left joins to my example.

Next step is to descide what to do with the "branches" that does not go all the way to 10.

One way is to let them be empty and another is to inherit the previous value all the way up to level 10.

 

All of this depends on how you want to use the hierarchy.

 

BR

Fredrik

View solution in original post

6 REPLIES 6
ScottJP
Obsidian | Level 7

Hi - You can surely just create a new Hieracrchy. As long as you've got these fields in your data, you can create the hierarchy. Then, clicking on an employee in, for example, a chart object, will allow a report user to drill down to the levels you've put in the hierarchy. 

 

I have done the same sort of thing for Sales Region --> Sales Manager --> Sales Area --> Sales Representative. 

KarunaT
Fluorite | Level 6

Thanks for the prompt reply, Scott.

 

But I think i was not able to explain the problem in hand.

I too have created a Geo Hierarchy with Country, State and City.

But currently, I have two fields Emp Id and Mngr Id, for 1st level, we will find the Mngr Id for the Employee; for the 2nd level, the Mngr id will become Emp Id and we will find the Mngr Id till we get to the highest Level.

 

Hope I am clear this time.

FredrikE
Rhodochrosite | Level 12

I don't think you can achieve that in VA, I tried some different ways  but did not get what I think you want 🙂

I have done this a couple of times and in all of them I have flattened the hierarchy in base-code before I loaded it into VA.

Like:

data test;

length uid mid 8 uname mname $32;

input uid mid uname;

datalines;

1 10 usr1

2 10 usr2

3 20 usr3

4 20 usr4

5 30 usr5

6 40 usr6

7 50 usr7

10 100 mgr10

20 100 mgr20

30 200 mgr30

40 300 mgr40

50 . mgr50

100 1000 mgr100

200 1000 mgr200

300 . mgr300

1000 . mgr1000

;

run;

proc sql;

create table hier as

select a.uname, b.uname as mgrname_lev1, c.uname as mgrname_lev2, d.uname as mgrname_lev3 from test a

left join test b

on a.mid = b.uid

left join test c

on b.mid = c.uid

left join test d

on c.mid = d.uid

order by 1,2,3,4

;

quit;

KarunaT
Fluorite | Level 6

Hi Fredrike,

Thanks for your Reply. This is exactly what I was looking for.

But in my case the level of Managers is unknown. An employee can have two levels of Managers above him while other might have six levels of Managers.

Is there any way, that can be achieved.

 

Thanks,

Karuna

FredrikE
Rhodochrosite | Level 12

I usually descide the number of levels possible, let say 10 and then just adds more left joins to my example.

Next step is to descide what to do with the "branches" that does not go all the way to 10.

One way is to let them be empty and another is to inherit the previous value all the way up to level 10.

 

All of this depends on how you want to use the hierarchy.

 

BR

Fredrik

KarunaT
Fluorite | Level 6

Thanks Fredrike!!

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

Tips for filtering data sources in SAS Visual Analytics

See how to use one filter for multiple data sources by mapping your data from SAS’ Alexandria McCall.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 6 replies
  • 1494 views
  • 3 likes
  • 3 in conversation