This is usually caused by a known problem at HP, ask your support rep about QCCR1J69872. The use of ''TDConnection.IgnoreHtmlFormat = True'' can cause HTML code propagation in ALM in memo fields as well as dashboard issues. There is not a fix for this, I have found a workaround:
Add in the line below in the Test_MoveTo sub this is located under the Test Plan Module script code in workflow make sure and put this after the On Error Resume Next and before On error goto 0:
TDConnection.IgnoreHtmlFormat=True
then Add the following line to the ExitModule sub, this sub is located under Common Script, make sure and put this after the On Error Resume Next and before On error goto 0:
TDConnection.IgnoreHtmlFormat=False
If you were seeing the issue in the defect description you would put the TDConnection.IgnoreHtmlFormat=True in the bug move to script instead of the test move to sub.......