View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
joel joel is offline
external usenet poster
 
Posts: 9,101
Default Search a Row and return Header Row Data

Here is a custom function

call with =GetHeader(10.50,A3:D8,1)
where
10.50 is the data you arre looking for
A3:D8 is range of cells to search
1 is the row of sheet youwant to get data from.

Routine locates the column whre the data is found and then returns the data
in the the same column for the row specified

Function GetHeader(SearchData As Variant, Target As Range, RowNumber)

For Each cell In Target
If SearchData = cell.Value Then Exit For

Next cell

GetHeader = Cells(RowNumber, cell.Column).Value

End Function


"Aaron" wrote:

I have a spreadsheet with 60 columns of data, each with a unique header
label. What formula do I use to search each row for specific data, then,
upon finding a match, return the header label data (i.e. the info in Row 1 of
that particular column.)

Thanks!