Hello,
I'm trying to copy-paste extracted data (3 columns - Columns B, C, D) from a 11 column dynamic range using advanced filters onto another worksheet. One of the extracted columns has hyperlinks and unfortunately does not successfully transfer over to the other worksheet. (Note - to be specific, the extracted data shows the underline but its not operable.) Here is the code I currently have. Could someone kindly let me know how I can resolve this:
Thanks.
I'm trying to copy-paste extracted data (3 columns - Columns B, C, D) from a 11 column dynamic range using advanced filters onto another worksheet. One of the extracted columns has hyperlinks and unfortunately does not successfully transfer over to the other worksheet. (Note - to be specific, the extracted data shows the underline but its not operable.) Here is the code I currently have. Could someone kindly let me know how I can resolve this:
Code:
Dim Crit As Range
Set Crit = Sheet3.Range("Criteria")
If Not Crit Is Nothing Then
Sheet2.Range("MyTable").AdvancedFilter _
Action:=xlFilterCopy, _
CriteriaRange:=Crit, _
CopyToRange:=Range("Extract"), Unique:=False
End If
Thanks.