OR and AND function

  • Thread starter Thread starter Dale Carlson
  • Start date Start date
D

Dale Carlson

The OR and AND functions only give TRUE or FALSE results.
Is there any way to OR or AND one number with another to
give a numeric result. For example, 0x64 AND 0x5F to
yield 0x44 (creates lower case from upper) or conversely,
0x44 OR 0x20 to yield 0x64 (creates upper case from
lower). Thanks for any help you can give me.
 
The OR and AND functions are logical, not bit-wise. To get the latter you need
VBA routines. As Dave mentioned, I have posted these in the past. You should
be able to find them on Google. If upper and lower case (but only for a single
letter???) are your primary concerns, you probably know about the UPPER and
LOWER worksheet functions,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top