Hello -
I am trying to pivot the same data multiple times to understand the all sub-level components of my finished parts. I have a list of parent items and the items that make them up which looks like this:
Parent Item (A) Component Item (B)
I can pivot the parent to component to get all the details on what parts make up the parent part, HOWEVER there are sub-assemblies in there.
For example, say I make Popsicles, my data looks like this:
Parent Item (A)......Component Item (B)
Popsicle Red ...........Stick
Popsicle Red ...........Wrapper
Popsicle Red ...........Red Juice
Red Juice ...............Red Dye
Red Juice ...............Grape Juice
...
When I pivot on Red Popsicle all I get is:
Stick
Wrapper
Red Juice
But I want:
Stick
Wrapper
Red Dye
Grape Juice
Is there a way to get there?
Thanks for the help!
I am trying to pivot the same data multiple times to understand the all sub-level components of my finished parts. I have a list of parent items and the items that make them up which looks like this:
Parent Item (A) Component Item (B)
I can pivot the parent to component to get all the details on what parts make up the parent part, HOWEVER there are sub-assemblies in there.
For example, say I make Popsicles, my data looks like this:
Parent Item (A)......Component Item (B)
Popsicle Red ...........Stick
Popsicle Red ...........Wrapper
Popsicle Red ...........Red Juice
Red Juice ...............Red Dye
Red Juice ...............Grape Juice
...
When I pivot on Red Popsicle all I get is:
Stick
Wrapper
Red Juice
But I want:
Stick
Wrapper
Red Dye
Grape Juice
Is there a way to get there?
Thanks for the help!