Forum Discussion
Empty Space before bullet points while converting HTML to text IN REPORT BUILDER POWER BI
Do I have to make changes in HTML source?
Or can It be done by via sql server by using replace function etc...(I tried using replace finction,adding CSS style start from left via sql server but it did not work.
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?