Not sure why my code isn't working. I am filtering a column in a table by blank values "(blanks)". Then inserting the value "NA" into the first cell and copying that value by dragging down the fill handle down to last cell in the column. Then unfiltering table again so everything is showing.
But when I run the macro all it does is copy the column header name and pastes it in the first cell and nothing else.
Sub InsertNAtoBlanks()
'
' InsertNAtoBlanks Macro
'
'
ActiveSheet.ListObjects("Table6").Range.AutoFilter Field:=11, Criteria1:= _
"="
Range("K4").Select
ActiveCell.FormulaR1C1 = "NA"
Range("K4").Select
Selection.FillDown
ActiveSheet.ListObjects("Table6").Range.AutoFilter Field:=11
End Sub