SELECT* FROM[LABOR CHART SHIPPED UNITS 2005 BY OP SUMMARY5 ]
UNION SELECT * FROM [LABOR CHART SHIPPED UNITS BY OP TARGET SUMMARY3]:;
Thi is the sql . summary3 has the months as a number (1-12) after union
query runs the out put is text (1,10,11,12,2...)
Then the definition of the months field in SUMMARY3 (which, again, *I
CANNOT SEE*) is apparently incorrect. We're happy to try to help...
but please, please look at your posts as if you knew nothing about
your database and see if maybe you need to add a bit more information!
Guessing: are you using the Format() function to extract the month
from the date field? If so, be aware that the Format() function
returns a string. Try using Month([datefield]) instead.
John W. Vinson[MVP]