Can I use a union query to combine multiple fields into 1 field?
I have an Original table that has job detail and the hours allocated per dept.
eg Job# Fab Turn Mill Slot
49114 | .5 | 4 | 3 | 1
I want to change it to:
Job# Dept Time
49114 | Fab | .5
49114 | Turn | 4
49114 | Mill | 3
49114 | Slot | 1
so I can create a report that shows jobs grouped by Dept
Is this the way to go about it or am I barking up the wrong tree?