Hi All,
I have been trying to figure this out for a while.
I have a complex query that basically generates the following data;
Part Number, Assembly Level
PN0001, 1
PN0002, 2
PN0003, 2
PN0004, 1
PN0005, 2
PN0006, 2
.
.
Etc.
I am trying to create a report that will display the data like this;
PN0001
-----PN0002
-----PN0003
PN0004
-----PN0005
-----PN0006
.
.
Etc.
Problem is, I get this;
PN0001
PN0004
-----PN0002
-----PN0003
-----PN0005
-----PN0006
I've tried to use grouping Etc. but can't quite get it to do what I want, any help would be appreciated.
Apologies if this is all a bit vague, not sure what other info will help.
Thanks in advance.
AJM