View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Bob Umlas[_3_] Bob Umlas[_3_] is offline
external usenet poster
 
Posts: 320
Default telling VB: if cells(a,b)="any number" then ...

if cells(3,4).value = "XYZ" then ...
or
if cells(5,1).value = 3.453 then ...

Not sure what the problem is/was...?

"filo666" wrote in message
...
Hi, this is easy for you, how to tell VB that if cells(a,b) is equal to

any
number then bla bla bla.

Also I would like to know:
equal to string
equal to fractional numbers (3.453)

TIA