I am trying to concatenate 2 fields which will decently line up. I am take a Price and a Size. The Price is in 2 decimal format. I do not want the data to "snake" in a report. Here is what i have so far.
PriceSize: Format([Price],"Fixed") & " - " & [Size]
However, when i run the query, i get snaking like this:
PriceSize
2.95 - 1 LB
12.75 - 5 LB
31.25 - 25 LB
0.85 - 50 LB
20.00 - 35 LB
1.25 - 50 LB
6.41 - 1 LB
12.25 - 0
19.00 - 25 LB
203.75 - 25 LB
46.25 - 5 LB
is there commands in this field to make things line up nicely?
thanks
Molly
PriceSize: Format([Price],"Fixed") & " - " & [Size]
However, when i run the query, i get snaking like this:
PriceSize
2.95 - 1 LB
12.75 - 5 LB
31.25 - 25 LB
0.85 - 50 LB
20.00 - 35 LB
1.25 - 50 LB
6.41 - 1 LB
12.25 - 0
19.00 - 25 LB
203.75 - 25 LB
46.25 - 5 LB
is there commands in this field to make things line up nicely?
thanks
Molly