Forum Discussion
Chetan----
2 years agoRegular Visitor
Empty Space before bullet points while converting HTML to text IN REPORT BUILDER POWER BI
I have data in sql server ,There is one column which has HTML Tags , I have taken on table visual and and added filter to and and added HTML Tags column in cell of table and did "HTML - Interpreter ...
lbendlin
2 years agoSuper User
both options should work.
Chetan----
2 years agoRegular Visitor
Can u please suggest me In the below HTML Tag,what needs to be replaced via sql query to remove blank spaces before the bullets--
<ul> <li style="text-align: left;">Cyclicality</li> <li style="text-align: left;">Historical Financial Performance / Recent Margin Ramp</li> <li style="text-align: left;">Competitive Differentiation</li> </ul>
- lbendlin2 years agoSuper User
looks like the div is playing games with you.
- Chetan----2 years agoRegular Visitor
SELECT
*,
REPLACE(commentary, '<ul>', '<ul style="text-align: left; margin: 0; padding: 0;">') AS UpdatedCommentary
FROM xhere I tried adding CSS but still there is blank space before bullet exist?