I want to compare 2 cells values in an if in vba
If cells(x,2) = cells(v,4)
Both cells are going tobe numerics, but there might be instances where the cell is considered text.
How would I write something to compare the values below does not seem to work
if cells(x,2).value = cells(v,4).value then
If cells(x,2) = cells(v,4)
Both cells are going tobe numerics, but there might be instances where the cell is considered text.
How would I write something to compare the values below does not seem to work
if cells(x,2).value = cells(v,4).value then