VBA AutoFilter with Hyperlink

ADSkinner

New Member
Joined
Aug 18, 2018
Messages
19
Hello all,

So I have run into a snag on a file I have put together.

I have added the following code into a module:

Code:
Sub Filter(lField As Long, sCriteria As String)   Worksheets("Shortage_Report").Range("C1").AutoFilter Field:=lField, _
      Criteria1:=sCriteria
End Sub

And then on the worksheet that pulls the data for the filter:
Code:
Private Sub Worksheet_FollowHyperlink(ByVal Target As Hyperlink)
Call Filter(lField:=3, sCriteria:=Target.Parent.Value)
End Sub

On the worksheet that pulls the data for the filter, I have created a hyperlink so that upon clicking that value, it takes the user to the link, and filters on that target value. All works wonderfully, however (hence the reason I am posting), when I copy the hyperlink down my column and attempt to click on one of those, I get an error on this line of code
Code:
Call Filter(lField:=3, sCriteria:=Target.Parent.Value)

But....if I were to go back and then set up the hyperlink like I did the first time, it works. This would be a fine resolution, if I didn't need have numerous cells that would be set up with the hyperlink.

I am looking for a way, if possible, to where I can copy the hyperlink down the column.
With the error resonating in my code for the auto filter, is there something missing there?

Any thoughts and/or help would be greatly appreciated.
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
Okay, so solved my issue. Instead of creating hyperlinks, I used code to autofilter based on double click

Rich (BB code):
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)    Cancel = True
    With Worksheets("Shortage_Report")
        .Select
        .Range("C1").AutoFilter Field:=3, Criteria1:=Target.Value
        End With
End Sub

However now, I have run into a new issue. Once the auto-filter has been applied to the other worksheet, and I return to the first sheet that had the value to be filtered, that column is not updating. I can use F9 to force it, but I would rather have it update on it's own.

I have also tried
Rich (BB code):
Worksheets(1).Calculate


but that is also not working. Anyone have any thoughts?
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,284
Messages
6,124,059
Members
449,139
Latest member
sramesh1024

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