CONCATENATE adding quotes

Major Disaster

New Member
Joined
Dec 2, 2015
Messages
7
Good afternoon,

I have a long formula that generates a LOOKUP function from varying sources it is looking for the maximum value in Column I then getting the correlated point in column B, to perform the LOOKUP of the timings in column A, this data is a wave form and I need to find it's initial point of crossing a threshold. The formula for the LOOKUP is such

=LOOKUP(">=67",CONCATENATE("B",MATCH((MAX(I9:I450)),$I9:$I450,0)-3,":","B",20+MATCH((MAX(I9:I450)),$I9:$I450,0)),CONCATENATE("A",MATCH((MAX(I9:I450)),$I9:$I450,0)-3,":","A",20+MATCH((MAX(I9:I450)),$I9:$I450,0)
this gives a #VALUE result.

When working step by step through the formula in excel it finally processes down to
Evaluation: = LOOKUP(95.413,"B356:379","A356:379")

the next step fails due to the Quotation marks in the formula. When typing in =LOOKUP(95.413,B356:379,A356:379) the formula works perfectly.

Does anyone know how to remove the quotation marks?

Thanks
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
LOOKUP(95.413,indirect("B356:B379"),indirect("A356:A379"))

Is it possible you forgot the column references for the second part of each range? I added them again.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,236
Messages
6,170,912
Members
452,366
Latest member
TePunaBloke

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top