Sorry, another pivot type problem from me! In this instance I have a table showing parts and shortages:
PartNo, Component Shortage
PART1, ResA
PART1, ResB
PART2, CapA
PART2, CapB
PART2, ResA
What I want to end up with is a single 'shortages' column against a part:
PartNo, Shortages
PART1, ResA + ResB
PART2, CapA + CapB + ResA
Is this possible and if so any pointers?
Many thanks,
Richard