Please guide me

abidraza

New Member
Joined
Feb 23, 2011
Messages
10
Please guide me in this macro because the Excel VBA gives error

Sub Button2_Click()

Sheets("Setups").Select
If Range("A2") = Range("H2") Then
Range("K1") = 1
Else
If Range("A2") = Range("H3") Then
Range("K1") = 2
Else
If Range("A2") = Range("H4") Then
Range("K1") = 3
End If

End Sub
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
Try

Code:
Sub Button2_Click()
Sheets("Setups").Select
If Range("A2") = Range("H2") Then
    Range("K1") = 1
ElseIf Range("A2") = Range("H3") Then
    Range("K1") = 2
ElseIf Range("A2") = Range("H4") Then
    Range("K1") = 3
End If
End Sub
 
Upvote 0
Perhaps...

Code:
Sub Button2_Click()
Range("K1").Value = Application.Match(Range("A2").Value, Range("H2:H4"), 0)
End Sub
 
Upvote 0

Forum statistics

Threads
1,224,521
Messages
6,179,285
Members
452,902
Latest member
Knuddeluff

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