+ Reply to Thread
Results 1 to 7 of 7

VBA To Fill In Cells Based On Criteria

Hybrid View

  1. #1
    Registered User
    Join Date
    04-04-2009
    Location
    N/A
    MS-Off Ver
    Excel 2003
    Posts
    24

    VBA To Fill In Cells Based On Criteria

    Hi - I just stumbled onto this forum while Googling around, and it looks great. I'm pretty new to VBA coding so please bear with me. Effectively what I'm looking to do in this mock-up file, is anywhere the currency is "EUR" in column A, I'd like the relative cell in Column G to change to "INSERT TEXT", else I want it to untouched (i.e. to keep the comment it currently has). I've tried messing around with loops, but keep getting stuck. Would really appreciate any help, if someone has the time.

    Many thanks.
    Attached Files Attached Files
    Last edited by McNulty; 04-11-2009 at 06:21 AM.

  2. #2
    Forum Contributor
    Join Date
    03-12-2009
    Location
    Calgary, Canada
    MS-Off Ver
    Excel 365
    Posts
    236

    Re: VBA To Fill In Cells Based On Criteria

    You could try:
    for each drow in range("A1:A" & range("A65000").end(xlup).row)
         if drow.value = "EUR" then
              range("G" & drow.row) = "INSERT TEXT"
         end if
    next
    If you can't figure out how a formula works, try stepping through it using "Evaluate Formula" in the Formula Auditing menu item in the tools menu!

    If you want to see where your code went wrong, try stepping through it by clicking in the code and pressing F8 and watch as the magic happens!


    If you are happy with any of the results, please add to the contributor's reputation by clicking the star icon.

  3. #3
    Registered User
    Join Date
    04-04-2009
    Location
    N/A
    MS-Off Ver
    Excel 2003
    Posts
    24

    Re: VBA To Fill In Cells Based On Criteria

    Thankyou very much. Works great. I've amended it slightly to the following:

    Sub FillEUR()
    
    ActiveWorkbook.Names.Add Name:="MyRange", RefersToR1C1:= _
        "=OFFSET(Sheet1!R1C1,0,0,COUNTA(Sheet1!C1),COUNTA(Sheet1!R1))"
    
    For Each drow In Range("A:A")
         If drow.Value = "EUR" Then
              Range("G" & drow.Row) = "INSERT TEXT"
         End If
    Next
    
    End Sub
    The Dynamic Name Range does nothing at the moment, but when I write the code, I ideally like to get it to sort just the data, and not the entire workbook. Appreciate this might be getting too complicated, but is there anyway to amend it to search just the data defined in "MyRange"? Also what exactly is "drow"? Tried Googling but nothing came up.

    Thanks so much again for the help, very much appreciated.

  4. #4
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988

    Re: VBA To Fill In Cells Based On Criteria

    I ideally like to get it to sort just the data, and not the entire workbook
    The below line finds the last used cell from 65000 row in Col A which in you're example is row 10 so you won't need the name ranged to make it dynamic as it already is

    range("A1:A" & range("A65000").end(xlup).row)
    Also what exactly is "drow"?
    drow is a variable range and Everstrivin should of declare it e.g

    Dim drow As Range
    For Each drow In Range("A1:A" & Range("A65000").End(xlUp).Row)
    If drow.Value = "EUR" Then
    Range("G" & drow.Row) = "INSERT TEXT"
    End If
    Next
    HTH

    VBA Noob
    _________________________________________


    Credo Elvem ipsum etian vivere
    _________________________________________
    A message for cross posters

    Please remember to wrap code.

    Forum Rules

    Please add to your signature if you found this link helpful. Excel links !!!

  5. #5
    Registered User
    Join Date
    04-04-2009
    Location
    N/A
    MS-Off Ver
    Excel 2003
    Posts
    24

    Re: VBA To Fill In Cells Based On Criteria

    Thankyou very much guys, this is really helpful for me. I just have one more question on this if that's ok. For some reason I can never get wildcards in my VBA code to work. So I've added the following:

    For Each drow In Range("A:A")
         If drow.Value = "AU*" Then
              Range("G" & drow.Row) = "WORKING"
         End If
    Next
    But it doesn't seem to pick up currency AUD, and then populate the written text. Am I missing something? Thanks so much again.

  6. #6
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988

    Re: VBA To Fill In Cells Based On Criteria

    Try the like function

    If drow.Value Like "AU*" Then
    VBA Noob

  7. #7
    Registered User
    Join Date
    04-04-2009
    Location
    N/A
    MS-Off Ver
    Excel 2003
    Posts
    24

    Re: VBA To Fill In Cells Based On Criteria

    Working perfectly now - many thanks again!

+ 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