how do I concatenate text that has a quotation mark

S

sparkroms

how do I concatenate text that has a quotation mark in it like th
following html: <img width="76" height="25" src="blah"
 
D

Dave Peterson

I put 76 in A1, 25 in B1 and blah in C1.

Then I used this formula:

="<img width="""&A1&""" height="""&B1&""" src="""&C1&""">"

Seemed to match up ok.
 
Top