M
mcl
Is there a way to set formats, like number of decimal places, in a union
query?
query?
KARL DEWEY said:You can try this --
SELECT Union1.XX, format( [Union1].[YY ],"0.000")
FROM Union1
UNION SELECT Union2.XX, format( [Union2].[YY ],"0.000")
FROM Union2;
mcl said:Is there a way to set formats, like number of decimal places, in a union
query?
mcl said:That worked fine. I have another question which I will give it's own
title.
KARL DEWEY said:You can try this --
SELECT Union1.XX, format( [Union1].[YY ],"0.000")
FROM Union1
UNION SELECT Union2.XX, format( [Union2].[YY ],"0.000")
FROM Union2;
mcl said:Is there a way to set formats, like number of decimal places, in a union
query?