Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Excel 2003 WinXP
Programming question: I had an interesting problem while helping an OP setup a spreadsheet. I had a list of names in Column A, say Tom, Dick, Harry. I then had a row range, say B1:D1. Each of these latter cells had a formula to bring the names in the first list. The formulas were simply "=A1", "=A2", etc, and displayed Tom, Dick, & Harry. The task I had was to search the latter cells for a name in the first list. I found that I couldn't search for the name because the latter cells didn't contain names, they contained only formulas. I solved my problem by searching for the cell address (.address(0,0)) of the name in the first list. That worked. My question: Is there a better way of searching for a name in a list that has only formulas that result in the names? Thanks for your help. Otto |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
if you were using find, you would specify Lookin:=xlValues rather than
Lookin:=xlformulas also, Lookat:=xlwhole or Lookat:=xlPart could play a role. It is always best to specify the value for all parameters when using find. Regards, Tom Ogilvy Otto Moehrbach wrote in message ... Excel 2003 WinXP Programming question: I had an interesting problem while helping an OP setup a spreadsheet. I had a list of names in Column A, say Tom, Dick, Harry. I then had a row range, say B1:D1. Each of these latter cells had a formula to bring the names in the first list. The formulas were simply "=A1", "=A2", etc, and displayed Tom, Dick, & Harry. The task I had was to search the latter cells for a name in the first list. I found that I couldn't search for the name because the latter cells didn't contain names, they contained only formulas. I solved my problem by searching for the cell address (.address(0,0)) of the name in the first list. That worked. My question: Is there a better way of searching for a name in a list that has only formulas that result in the names? Thanks for your help. Otto |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks Tom. Another palm to the forehead. I have to stop asking you
questions. It's bad for my head. Otto "Tom Ogilvy" wrote in message ... if you were using find, you would specify Lookin:=xlValues rather than Lookin:=xlformulas also, Lookat:=xlwhole or Lookat:=xlPart could play a role. It is always best to specify the value for all parameters when using find. Regards, Tom Ogilvy Otto Moehrbach wrote in message ... Excel 2003 WinXP Programming question: I had an interesting problem while helping an OP setup a spreadsheet. I had a list of names in Column A, say Tom, Dick, Harry. I then had a row range, say B1:D1. Each of these latter cells had a formula to bring the names in the first list. The formulas were simply "=A1", "=A2", etc, and displayed Tom, Dick, & Harry. The task I had was to search the latter cells for a name in the first list. I found that I couldn't search for the name because the latter cells didn't contain names, they contained only formulas. I solved my problem by searching for the cell address (.address(0,0)) of the name in the first list. That worked. My question: Is there a better way of searching for a name in a list that has only formulas that result in the names? Thanks for your help. Otto |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Searching multiple data to show desired result | Excel Discussion (Misc queries) | |||
Searching on 2 columns and putting result in third column. | Excel Worksheet Functions | |||
Formula result does not match displayed result | Excel Worksheet Functions | |||
Advanced formula - Return result & Show Cell Reference of result | Excel Worksheet Functions | |||
Searching a text and filling a cell with the result | Excel Programming |