Shorten the code

Ongbey

New Member
Joined
Oct 16, 2018
Messages
29
Office Version
  1. 2013
Hi, beIow you will see my Excel VBA code. It will expand to until A120. Could you please shorten the code?
Thanks,

Private Sub Worksheet_FollowHyperlink(ByVal Target As Hyperlink)
If Target.Range.Address = "$A$20" Then [AR1] = 0: [A1] = Range("A20").Value: Call BOM: Exit Sub
If Target.Range.Address = "$A$21" Then [AR1] = 0: [A1] = Range("A21").Value: Call BOM: Exit Sub
If Target.Range.Address = "$A$22" Then [AR1] = 0: [A1] = Range("A22").Value: Call BOM: Exit Sub
If Target.Range.Address = "$A$23" Then [AR1] = 0: [A1] = Range("A23").Value: Call BOM: Exit Sub
If Target.Range.Address = "$A$24" Then [AR1] = 0: [A1] = Range("A24").Value: Call BOM: Exit Sub
If Target.Range.Address = "$A$25" Then [AR1] = 0: [A1] = Range("A25").Value: Call BOM: Exit Sub
If Target.Range.Address = "$A$26" Then [AR1] = 0: [A1] = Range("A26").Value: Call BOM: Exit Sub
If Target.Range.Address = "$A$27" Then [AR1] = 0: [A1] = Range("A27").Value: Call BOM: Exit Sub
If Target.Range.Address = "$A$28" Then [AR1] = 0: [A1] = Range("A28").Value: Call BOM: Exit Sub
If Target.Range.Address = "$A$29" Then [AR1] = 0: [A1] = Range("A29").Value: Call BOM: Exit Sub
If Target.Range.Address = "$A$30" Then [AR1] = 0: [A1] = Range("A30").Value: Call BOM: Exit Sub
End Sub
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
I don't normally use that short form syntax, but see if this does what you want.

VBA Code:
If Not Intersect(Target, Range("A20:A120")) Is Nothing Then
    [AR1] = 0: [A1] = Target.Value: Call BOM: Exit Sub
End If

If it is not doing anything else you don't need the Exit Sub part
If you have a change event running as well you will want to add Application.EnableEvents = False (and a True at the end of the routine)
 
Upvote 0
VBA Code:
Private Sub Worksheet_FollowHyperlink(ByVal Target As Hyperlink)
Dim rng As Range: Set rng = [A20:A120]
If Target.Count > 1 Then Exit Sub
If Not Intersect(rng, Target) Is Nothing Then [AR1] = 0: [A1] = Target.Value: Call BOM
End Sub
 
Upvote 0
I don't normally use that short form syntax, but see if this does what you want.

VBA Code:
If Not Intersect(Target, Range("A20:A120")) Is Nothing Then
    [AR1] = 0: [A1] = Target.Value: Call BOM: Exit Sub
End If

If it is not doing anything else you don't need the Exit Sub part
If you have a change event running as well you will want to add Application.EnableEvents = False (and a True at the end of the routine)
Thanks for the solution. But Excel give an error "Type mismatch" for "if not ..." sentence. Our version is 2013, is t problem?
 
Upvote 0
VBA Code:
Private Sub Worksheet_FollowHyperlink(ByVal Target As Hyperlink)
Dim rng As Range: Set rng = [A20:A120]
If Target.Count > 1 Then Exit Sub
If Not Intersect(rng, Target) Is Nothing Then [AR1] = 0: [A1] = Target.Value: Call BOM
End Sub
Thanks for the solution. But Excel give an error "Object doesn't support" for "if target..." sentence. Our version is 2013, is t problem?
 
Upvote 0
No not a 2013 issue. Target is a range in most event macros but not in the follow hyperlink event.
Give this a try:

VBA Code:
Private Sub Worksheet_FollowHyperlink(ByVal Target As Hyperlink)
    Dim rngTarget As Range
    Set rngTarget = Target.Range
   
    If Not Intersect(rngTarget, Range("A20:A120")) Is Nothing Then
        Application.EnableEvents = False
        [AR1] = 0: [A1] = rngTarget.Value
        Call BOM: Exit Sub
        Application.EnableEvents = True
    End If
End Sub
 
Upvote 0
Solution
No not a 2013 issue. Target is a range in most event macros but not in the follow hyperlink event.
Give this a try:

VBA Code:
Private Sub Worksheet_FollowHyperlink(ByVal Target As Hyperlink)
    Dim rngTarget As Range
    Set rngTarget = Target.Range
  
    If Not Intersect(rngTarget, Range("A20:A120")) Is Nothing Then
        Application.EnableEvents = False
        [AR1] = 0: [A1] = rngTarget.Value
        Call BOM: Exit Sub
        Application.EnableEvents = True
    End If
End Sub
Great. Code worked. thank you !
 
Upvote 0

Forum statistics

Threads
1,215,325
Messages
6,124,254
Members
449,149
Latest member
mwdbActuary

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