Not sure what that char is, You can simply try this assuming either its chr(10) or chr(120)
LegendText = Replace(Cells(49, 1), Chr(10), "")
or
LegendText = Replace(Cells(49, 1), Chr(120), "")
Saurabh...