data display

chriscmartin

New member
Joined
Oct 22, 2014
Messages
1
Reaction score
0
Points
0
Please see attached file.

In the file I have 2 tables of data, input from the scan gun (A5: up to E2000) and stock file data (H5: up to M2000)

I have the formulas to compare the ids from both lists and report whether there is a match or a blank call (displayed as end of data) which I ignore and if there is a id not in both lists it shows the ID.

What I need is a way to display this info nicely, preferably showing matching data from the tables.

Any ideas? I did think about a pivot table but didn't seem to work for me. below is an example of the main data I have.
LocationStock IDDateTimeUserStock IDPRFXGaugeWidthWeightLocationOnGunNotStockOnStockNotGun
09002M3470725/09/2014105236chrisQ39639LBP2.3001050.00016.840sal01MatchQ39639
09002M3469625/09/2014105434chrisB82804PRL.6901000.0005.150 MatchB82804
09002M3469525/09/2014105516chrisK85721LBI.3001050.0008.820 MatchK85721
09002M3475125/09/2014105625chrisSO4185LDZ.230980.000.64013000M34751Match
09002M3401825/09/2014105710chrisM91739LDI.2301050.000.290 MatchM91739
09002M3471025/09/2014105756chrisM04527LDZ.2301030.0003.585m3002MatchM04527
09002M3470825/09/2014105803chrisPJ5059BPZ.408598.0001.87013003MatchPJ5059
09002M3470625/09/2014105814chrisZ08107LBZ.300400.000.666A0801MatchZ08107
09002M3471125/09/2014105823chrisQ35614 2.300969.00014.580M3002MatchQ35614
 
Make a named range ScanID (col B)
Make another named range ScanData (col A to E)

End of stock add a column = match(h2,ScanId,0) (column N)
after this use columns for the "matched data" = index(ScanData,$N2,x) replacing x with 1 to 4 in subsequent columns

Will need an IF statement in column N and with the index function)

(and I haven't had my morning coffee yet so check the order of the parameters)
 
Back
Top