VBA to check if cell is less than 1

uk747

Well-known Member
Joined
Jul 20, 2011
Messages
832
Office Version
  1. 365
Platform
  1. Windows
Trying to highlight a cell if value in another column is less than 1.

Ideally just wanted to highlight value i.e. 0 -1 -2 etc, but it also highlights blanks

All 3 lines below highlighted the blanks as well as values less than 1

VBA Code:
For I = 1 to 100
  If range("a" & I) = 0 then range("b" & I).interior colorindex = 7
  If range("a" & I) <1 then range("b" & I).interior colorindex = 7
  If range("a" & I) < int(1) then range("b" & I).interior colorindex = 7

Next I
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
maybe something like
VBA Code:
For I = 1 to 100
    If range("a" & I) <> ""  AND range("A" & I) <1 then range("b" & I).interior colorindex = 7
Next I
 
Upvote 0
Thanks. I actually ended up doing that, but wasn't sure how to do it without using the AND, not sure if there was a way.

I thought using int would work ?
 
Upvote 0

Forum statistics

Threads
1,214,651
Messages
6,120,744
Members
448,989
Latest member
mariah3

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top