Select where field display is a %

wish24bone

Registered User.
Local time
Today, 11:31
Joined
Nov 28, 2011
Messages
10
Hi,
I have a table with a number field that is set to display as a %.. (ie.. 100 displays as 100.00% when the column is selected)..

I want to not see where the value = 100..

my query
----------
SELECT [SmartAdvisor Infrastructure Request List].[% Complete]
FROM [SmartAdvisor Infrastructure Request List]
WHERE ((([SmartAdvisor Infrastructure Request List].[% Complete])<>100));

This still shows record that are 100.00%.. even though the field is a number, because the display is %, how can I get around this?
Thank you in advance
 
Hi..

Try this..:

SELECT [SmartAdvisor Infrastructure Request List].[% Complete]
FROM [SmartAdvisor Infrastructure Request List]
WHERE ((([SmartAdvisor Infrastructure Request List].[% Complete])<>1));


for 7% ..:

......uest List].[% Complete])<>7/100
 
Thank you, that worked
 

Users who are viewing this thread

Back
Top Bottom