Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I'd like to use an "IF" statement for a macro, but I dont' know how to
describe the condition to VBA. Basically, the condition is whether or not two cells have the same value in column K. Thanks comparini3000 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Assuming rows 1 and 2
If Cells(1, 11).Value = Cells(2, 11).Value then or If Range("K1").Value = Range("K2").Value then You don't really have to use the .Value part "comparini3000" wrote: I'd like to use an "IF" statement for a macro, but I dont' know how to describe the condition to VBA. Basically, the condition is whether or not two cells have the same value in column K. Thanks comparini3000 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Double Entries in Excel | Excel Discussion (Misc queries) | |||
Double Entries in Excel | Excel Discussion (Misc queries) | |||
Double Entries in Excel | Excel Discussion (Misc queries) | |||
vlookup double entries... help!!! | Excel Discussion (Misc queries) | |||
Checking for double entries | Excel Discussion (Misc queries) |