Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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 tags as a style".Then When I run the report these gives thes output--
In these the problem is Before bullet points it has some space .I want bullet should start from extreme left of that box.I do not know what is the reason behind it.I have made padding to "0pt" for left and made left Alignment of text but still it keeps blank space before the bullet.Can anyone help me with it.
For the above Text box ,These is the column with HTML tags as shown below --
<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>
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.
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>
looks like the div is playing games with you.
SELECT
*,
REPLACE(commentary, '<ul>', '<ul style="text-align: left; margin: 0; padding: 0;">') AS UpdatedCommentary
FROM x
here I tried adding CSS but still there is blank space before bullet exist?
That's the way list items render by default. Use CSS to modify that behavior.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |