So, I feel that I've missed something here but here goes...
If i have a table with two columns, how can I (using a query) pull those together to appear to be the same field... ?
Code:
col1 col2
1 2
3 4
to be
colX colY
1 fromCol1
2 fromCol2
3 fromCol1
4 fromCol2
A fuller explanation of what I'm doing.... (it's not imperative that you read this bit!)
I have a system that monitors kids coming in and out of a nursery. The childrens "shifts" have a "start time" and "end time" already stored in data, and every other bit of the system likes these to be separate fields.
However I need to calculate how many staff are required at any one time. So my plan is to combine these start/end times into one field as above with the second column telling me if a child is going in/out. therefore using these piece of data i can iterate through the data and for each start/end point calculate how many children there will be.
Any other suggestions to solve this would be welcome. No doubt something will come to me if I just stop thinking about it.!
ta
Adrian