Hi,
I have an Access 2003 query which generates a set of percentages, it's working nicely and correctly. As a quick check I thought I would total all the generated percentages together to see that they do indeed add up to 100%
This is the expression in my query:
TotalPcent: [DisabledPcent]+[NonDisabledPcent]+[NotKnownPcent]
But when the query is run I get the following on the screen instead:
5.62%48.86%45.52%
Is this a bug, why doesn't it total up my figues?
Here are the calculations for my individual percentages (without any zero error checking built in yet):
DisabledPcent: Format([TotDisabled]/[TotGME],"Percent")
NonDisabledPcent: Format([TotNonDisabled]/[TotGME],"Percent")
NotKnownPcent: Format([TotNotKnown]/[TotGME],"Percent")
I have an Access 2003 query which generates a set of percentages, it's working nicely and correctly. As a quick check I thought I would total all the generated percentages together to see that they do indeed add up to 100%
This is the expression in my query:
TotalPcent: [DisabledPcent]+[NonDisabledPcent]+[NotKnownPcent]
But when the query is run I get the following on the screen instead:
5.62%48.86%45.52%
Is this a bug, why doesn't it total up my figues?
Here are the calculations for my individual percentages (without any zero error checking built in yet):
DisabledPcent: Format([TotDisabled]/[TotGME],"Percent")
NonDisabledPcent: Format([TotNonDisabled]/[TotGME],"Percent")
NotKnownPcent: Format([TotNotKnown]/[TotGME],"Percent")