Inventor - barcode formula help

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • frankishk
    New Member
    • Apr 2014
    • 3

    Inventor - barcode formula help

    I have barcodes (master files) in column c and descriptions in column d and I have a scanner for inventory purposes which scans the barcode and quantity. I have pasted the scans with the quantities into this sheet and What I need to do is make a formula eg in column f that says if the barcode in column g matches the barcode in column c then put the qty in - col h.

    Any help appreciated
    Kim

    Column
    a B C D E F G H
    Master Stock Qty
    Barcode Barcode on
    Stock

    G & H are colum I have pasted in to this spread sheet from my scanned data....
    What I want column D to do is lookup cell eg c1 and matchthis by looking up colum G and then put the corresponding qty (col H) in here.

    Eg if C4 equals G22 then put the value of H22 in D4

    Hopefully that make sense
    Last edited by frankishk; Apr 26 '14, 11:02 PM. Reason: Updated to give more clarity
  • anvidc
    New Member
    • Sep 2007
    • 28

    #2
    Hi,
    I assume that you are using Excel 2007 above

    You can use SUMIF

    Code:
    =SumIF(G:G,"=" & C2,H:H)

    Comment

    • frankishk
      New Member
      • Apr 2014
      • 3

      #3
      Can you please look at my update as I couldn't get the formula you posted to work - but it looks close

      Comment

      • anvidc
        New Member
        • Sep 2007
        • 28

        #4
        Hi,

        I not sure how's your Scan Data will look like. My guess you need to sum all your scan quantity, if this case

        Code:
        =SUMIF(G:G,"="&C:C,H:H)
        if you need just lookup the match

        Code:
        =VLOOKUP(C:C,G:H,2,FALSE)
        but this will only lookup the first match

        to better understand you can upload some sample data here..

        Comment

        • frankishk
          New Member
          • Apr 2014
          • 3

          #5
          THnaks , that formula was correct and I got it to do what I needed, thanks heaps for your help!!

          Comment

          Working...