Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi,
I would like to match col A with Col Q, for instance if there is 100 in Col A and Q, then i would like to return the value in Col I which represents the vlaue for col A 100 in the same row. I hope this is clear. It would save me alot of manual input. Any help here would be apprecaited. Thanks |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Sub findmatchs()
For i = 2 To cells(rows.count,"a").end(xlup).row If Cells(i, "a") = Cells(i, "q") Then mymatch=Cells(i, "I") msgbox mymatch Next i End Sub -- Don Guillett Microsoft MVP Excel SalesAid Software "Haz" wrote in message ... Hi, I would like to match col A with Col Q, for instance if there is 100 in Col A and Q, then i would like to return the value in Col I which represents the vlaue for col A 100 in the same row. I hope this is clear. It would save me alot of manual input. Any help here would be apprecaited. Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
need to return next match of table, only finding first match...HEL | Excel Worksheet Functions | |||
MATCH Multiple Criteria & Return Previous / Penultimate Match | Excel Worksheet Functions | |||
Match two columns, return a third piece of data | Excel Discussion (Misc queries) | |||
Match data in 2 columns and return data from 3rd column | Excel Worksheet Functions | |||
Compare Value in Cell 1 to a List, Return Value if Match otherwise Return Null | Excel Discussion (Misc queries) |