+ Reply to Thread
Results 1 to 5 of 5

VBA Autofilter change cells

Hybrid View

  1. #1
    Registered User
    Join Date
    08-07-2012
    Location
    London
    MS-Off Ver
    Excel 2010
    Posts
    62

    VBA Autofilter change cells

    Hi all,

    I am trying to write a code that filters an area and then chages the contents of one of the columns; but only of the visible cells.
    I have tried a lot of codes online but none of them seem to work, can anyone help me?

    Sub FilterMacro()
    '
    ' FilterMacro Macro
    '
    Rows("2:2").Select
    Selection.AutoFilter
    ActiveSheet.Range("$A$2:$AK$221960").AutoFilter Field:=2, Criteria1:="#N/A"
    ActiveSheet.Range("$A$2:$AK$221960").AutoFilter Field:=13, Criteria1:= _
    "Action ordinaire"
    ActiveSheet.Range("$A$2:$AK$221960").AutoFilter Field:=8, Criteria1:= _
    "Equities"

    that is the filter, then I would like to change the contents of the visible cells column B to "Shares".

    this would save me so much time.

    Thank you in advance,

    Daniel

  2. #2
    Forum Expert
    Join Date
    01-12-2007
    Location
    New Jersey
    Posts
    2,127

    Re: VBA Autofilter change cells

    Try adding the following and see if it meets your needs (test it on a copy of the workbook, not original data, so it doesn't corrupt your data if not correct)

    Intersect(Activesheet.Usedrange, Columns(2)).value = "Shares"

  3. #3
    Registered User
    Join Date
    08-07-2012
    Location
    London
    MS-Off Ver
    Excel 2010
    Posts
    62

    Re: VBA Autofilter change cells

    Worked perfectlty Thank you!

    You just earned yourself some reputation!

  4. #4
    Forum Expert
    Join Date
    01-12-2007
    Location
    New Jersey
    Posts
    2,127

    Re: VBA Autofilter change cells

    Thanks, please come again LOL

  5. #5
    Registered User
    Join Date
    08-07-2012
    Location
    London
    MS-Off Ver
    Excel 2010
    Posts
    62

    Re: VBA Autofilter change cells

    HI BigBas,

    Realised your fomula does not work as well as I thought because it also changes the column header and any visible row on the column, would you know how to change it so that it only changes the those cells?

    ActiveSheet.Range(Selection.Address).AutoFilter Field:=15, Criteria1:= _
    "Ultimate Parent Company Kingdom of the Netherlands"
    Intersect(ActiveSheet.UsedRange, Columns(15)).Value = "ABN NV"

    Thank you.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1