oftenneedhelp
MIS
I am trying to replicate a SQL statement that compares an integer with a HEX field and returns a value (0 or other) if the bit is turned on or off -- itemtag is an integer
CASE
WHEN (wi.itemtag & CONVERT(int,0X8000)) <> 0 THEN 'Y'
ELSE 'N'
END
in an access query design view-- and am very stumped -- Any help would be great
CASE
WHEN (wi.itemtag & CONVERT(int,0X8000)) <> 0 THEN 'Y'
ELSE 'N'
END
in an access query design view-- and am very stumped -- Any help would be great