Cell-format and comparison

  • Thread starter Thread starter Jos Vens
  • Start date Start date
J

Jos Vens

Hi,


I have a lot of cells with numbers. Sometimes, Excel interprets these cells
as text. In the debugger, I get this

?Val([gPD]) < Val([gPD_Count])

False

?[gPD] < [gPD_Count]

True



So, If I convert the named cells to values, everything works fine, but not
always if I don't. Thus this means I have to change my code for every named
cell to

Val([Cell]), or is there another way? As I said, I have a lot of named
cells with numbers, and a lot of code to check.



Why does Excel not sea that it's a number? (Sometimes, I pasted a lot of
numbers programmatically in a sheet, and then, Excel misinterprets!)



Thanks

Jos Vens
 
It's because the cells are formatted as text. You may be able to fix i
by just formatting everything as general rather than modifying you
code.
 
Hi,

I just think that the general-format is wrong (see my comparison in the
debugger) and I have to have the format Number (I compare numbers) for the
named cells that I compare. I cannot format everything into numbers.

Jos
 

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