VBA - Autofilter sheet, then fill cells that are visible with a value

JeffHaas

New Member
Joined
Nov 29, 2016
Messages
18
I've got a spreadsheet which has been processed up to a certain point. Then I want to autofilter it and add a tag to just the visible cells. This code shifts a column over, adds the columns for the new tags, but then doesn't fill the visible cells with the tag. Any help appreciated!

Code:
Sub Add_ValueA_ValueB()'
' Add_ValueA_ValueB Macro
'
' Insert columns for ValueA and ValueB
    Columns("A:A").Select
    Selection.Insert Shift:=xlToRight
    Selection.Insert Shift:=xlToRight
    Range("A1").Select
    ActiveCell.FormulaR1C1 = "ValueA"
    Range("B1").Select
    ActiveCell.FormulaR1C1 = "ValueB"
    
' Filter column C for just "XYZZY"
    Cells.Select
    Selection.AutoFilter
    Range("C1").Select
    ActiveSheet.Range("$A$1:$F$190").AutoFilter Field:=3, Criteria1:= _
        "=*XYZZY*", Operator:=xlAnd


' ** Here's where I need help **
    Range("A2").Select
    ActiveCell.FormulaR1C1 = "Tag 1"
    Range("A2").Select  ' Doesn't select the cells visible after filtering  
    Selection.FillDown  ' Doesn't fill down the selection


End Sub
 

Excel Facts

Will the fill handle fill 1, 2, 3?
Yes! Type 1 in a cell. Hold down Ctrl while you drag the fill handle.

Forum statistics

Threads
1,223,888
Messages
6,175,208
Members
452,618
Latest member
Tam84

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