Forum Discussion
HTML not rendering in HTML Content visual
- 1 year ago
Have you checked the granuality? Maybe there are duplicates?
If you change the SELECTEDVALUE of 'Opportunity Feed'[Body] to MAX of 'Opportunity Feed'[Body] --- you should see it return text?
- 1 year ago
It's possible you could use CONCATENATEX in your DAX
Most likely it contains too many tags ( like <body> etc). See if you can clean that up, or if you can isolate it in its own iframe.
- Anonymous1 year agoNot applicable
You mean in my 'Opportunity Feed'[Body] column there might be <body> tag?
There isn't any <body> tag, but in some records there are a lot of <p> tag.
To test your solution, I created a new column 'Opportunity Feed'[Test]. In this column, all the records are "<p>Test</p>".
When I changed my measure from SELECTEDVALUE('Opportunity Feed'[Body]) to SELECTEDVALUE('Opportunity Feed'[Test]), "Test" is rendered in the iframe, but opportunity name is not rendering any more.
This is really odd.