R
Ray S.
I have a form with a list box. The list box is populated by a query. The
query is:
SELECT CheckFinalPercentages.AllocType, CheckFinalPercentages.[Master-Sub],
CheckFinalPercentages.SumOfPERCOUT AS Pct
FROM CheckFinalPercentages
ORDER BY CheckFinalPercentages.AllocType DESC ,
CheckFinalPercentages.[Master-Sub];
Now, when I run the query that feeds the list, I get the SumOfPERCOUT As Pct
looking fine, with the Pct column displaying in percent format, but in the
list it is showing up as a number (for example, instead of 100%, I get 1). I
know that at one point the form used to display the percentage format, but
somehow I've lost that. Can anyone give me a tip as to how I can get it to
display in percent format again?
query is:
SELECT CheckFinalPercentages.AllocType, CheckFinalPercentages.[Master-Sub],
CheckFinalPercentages.SumOfPERCOUT AS Pct
FROM CheckFinalPercentages
ORDER BY CheckFinalPercentages.AllocType DESC ,
CheckFinalPercentages.[Master-Sub];
Now, when I run the query that feeds the list, I get the SumOfPERCOUT As Pct
looking fine, with the Pct column displaying in percent format, but in the
list it is showing up as a number (for example, instead of 100%, I get 1). I
know that at one point the form used to display the percentage format, but
somehow I've lost that. Can anyone give me a tip as to how I can get it to
display in percent format again?