Juho has attended:
Excel VBA Intro Intermediate course
Using quotation marks
Hi,
I would need to add a formula that includes quotation marks from vb into a worksheet.
The formula beeing
=VLOOKUP(TEXT(Interface!K34,"????/????"),Odds!$S$1:$T$81,2)
I've tried it in form:
Sheets(1).Cells(35, 11).Value = "=VLOOKUP(TEXT(Interface!K34,"????/????"),Odds!$S$1:$T$81,2)"
but vb doesn't seem to like quotation marks inside other quotation marks. Is there a way of gettibg around this.
Thans for you help in advance,
Juho
RE: Using quotation marks
Hi Juho
Thank you for your question.
Quotes within a string can be done if you double the quotes.
"=VLOOKUP(TEXT(Interface!K34,""????/????""),Odds!$S$1:$T$81,2)"
Regards
Laura GB