View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
yshridhar yshridhar is offline
external usenet poster
 
Posts: 229
Default LookUp/Match/Index/OffSet Question

Assuming the date is not repeated and the data in in Sheet 1, the new table
in Sheet2
Try this formula
b2=IF(Sheet1!B$1=B$1,VLOOKUP($A2,Sheet1!$A$2:$D$6, COLUMN()),"Not found")
with regards
"carl" wrote:

Not sure what to do on this one. I posted yesterday.

My Data Table is set-up like this:

Date AA GOOG DELL
20071212 0.99% 3.89% 1.32%
20071213 0.48% 2.96% 0.46%
20071214 1.02% 2.25% 1.37%
20071217 0.76% 4.37% 0.80%
20071218 0.73% 5.00% 0.52%


I need to create another table that has the date in ColA and the Stocks
(AA,GOOG etc) in B1:D1. I need a formula that will be in B2:D3 that gives
this result..

Date AA BAC DELL
20071212 0.99% NotFound 1.32%
20071217 0.76% NotFound 0.80%

Thank You in advance