+ Reply to Thread
Results 1 to 8 of 8

Fill cell value based on value from another sheet

Hybrid View

  1. #1
    Registered User
    Join Date
    10-31-2011
    Location
    New York, NY
    MS-Off Ver
    Excel 2007
    Posts
    14

    Fill cell value based on value from another sheet

    Hi,

    I am having difficulty with the following and any help is greatly appreciated;

    I am trying to fill a cell value based on a value in the column to it's left, and using a value from a separate sheet.

    For example: Column B is Client Name, Column C is Client Number. I have a separate worksheet titled "Client No List." I want to be able to enter the client name (for example in row 5 - so B5), and have the client number automatically fill C5 with the number.

    I had this working before, but someone messed with sheet and I can't figure it out again!

    Here is what I had:

    If Not Intersect(Target, Columns("B")) Is Nothing Then
    Dim tmp As Range
    Set tmp = Sheets("Client No List").Range("A2:A1500").Find(Target.Value)
    If Not tmp Is Nothing Then
    Target.Offset(0, 1).Value = tmp.Offset(0, 1).Value
    Else
    Target.Offset(0, 1).Value = "???"
    End If
    End If

  2. #2
    Forum Expert ben_hensel's Avatar
    Join Date
    01-26-2012
    Location
    Northeast USA
    MS-Off Ver
    Office 365
    Posts
    2,043

    Re: Fill cell value based on value from another sheet

    I think VBA is rather more solution than you need...

    B5 = client name //the input
    C5 = VLOOKUP(B5, Client_No_List!$A$2:$B$1500,2,FALSE)
    Note this is going to be picky; your input will have to EXACTLY match the spelling, layout, name (Fred vs Freddy vs Fredrick), of the table it's looking to.

    EDIT: It occurs to me I'm making some rather substantial assumptions about the layout of your spreadsheet. Post a copy (with sensitive information stripped out/ replaced with dummy info) and I can verify or correct my assumptions.
    Last edited by ben_hensel; 07-09-2012 at 12:57 PM. Reason: butt-covering

  3. #3
    Registered User
    Join Date
    10-31-2011
    Location
    New York, NY
    MS-Off Ver
    Excel 2007
    Posts
    14

    Re: Fill cell value based on value from another sheet

    Thanks - I was wondering if I needed VBA or Vlookup would do the trick.

    Here is the basic and relevant layout - I am trying to figure out how to upload from our internal server to the site. In the meantime, I saved in google docs, if you can access this: https://docs.google.com/spreadsheet/...DFpeTk1aUowVlE

  4. #4
    Registered User
    Join Date
    10-31-2011
    Location
    New York, NY
    MS-Off Ver
    Excel 2007
    Posts
    14

    Re: Fill cell value based on value from another sheet

    Sorry - I think this may work. If not, I'm working on it...
    Attached Files Attached Files

  5. #5
    Forum Expert martindwilson's Avatar
    Join Date
    06-23-2007
    Location
    London,England
    MS-Off Ver
    office 97 ,2007
    Posts
    19,320

    Re: Fill cell value based on value from another sheet

    google docs are not excel, formulas are entered differently
    "Unless otherwise stated all my comments are directed at OP"

    Mojito connoisseur and now happily retired
    where does code go ?
    look here
    how to insert code

    how to enter array formula

    why use -- in sumproduct
    recommended reading
    wiki Mojito

    how to say no convincingly

    most important thing you need
    Martin Wilson: SPV
    and RSMBC

  6. #6
    Forum Expert
    Join Date
    05-30-2012
    Location
    The Netherlands
    MS-Off Ver
    Office 365
    Posts
    14,987

    Re: Fill cell value based on value from another sheet

    See collumn G (yellow cells)

    I worked with datavalidation in collumn C.

    I worked with defined names (clientname)

    Do you have questions, on this item, just ask.
    Attached Files Attached Files
    Notice my main language is not English.

    I appreciate it, if you reply on my solution.

    If you are satisfied with the solution, please mark the question solved.

    You can add reputation by clicking on the star * add reputation.

  7. #7
    Registered User
    Join Date
    10-31-2011
    Location
    New York, NY
    MS-Off Ver
    Excel 2007
    Posts
    14

    Re: Fill cell value based on value from another sheet

    Thanks. That should work. Is there any way to write this so that it recognizes an incomplete name? For example, if I have a client named Jane Doe, cane I just type Jane in sheet 1, column C and the program will recognize that as Jane Doe (assuming there are no other Janes). I believe the VBA I had could do this...

  8. #8
    Forum Expert
    Join Date
    05-30-2012
    Location
    The Netherlands
    MS-Off Ver
    Office 365
    Posts
    14,987

    Re: Fill cell value based on value from another sheet

    1) Why would you do it that way?

    2) Did you see the drop box in the sheet?

+ 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