View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.programming
a m spock a m spock is offline
external usenet poster
 
Posts: 50
Default Using IF to decide action

dear mike,
in a parallel situations what would need to be done if i need to skip all
action for offset(0,-3).value =1 and move down in the column until i find a
cell with the corresponding offset(0,-3).value <1 then call macroX

ams

"Mike H" wrote:

Glad I could help. I missed the negative 0ffset(,-3)

Mike

"a m spock" wrote:

This is what has worked.

If ActiveCell.Offset(0, -3).Value = 1 Then
Call Sale
ElseIf ActiveCell.Offset(0, -3).Value < 1 Then
Call Sale2
End If

many thanks once again.

"Mike H" wrote:

Try this

If ActiveCell.Offset(, 3).Value = 1 Then
'Macro1
ElseIf ActiveCell.Offset(, 3).Value < 1 Then
'macro2
End If

Mike

"a m spock" wrote:

I have two options to act in ActiveCell depending on value of cell in the
third column to the left of active cell i.e. Offset(0,-3). I have two
separate macros say Macro1 and Macro2 to call depending on if the value is
=1 or <1. I don't know the IF process. Please help.