Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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 July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
3 | |
3 | |
1 | |
1 | |
1 |
User | Count |
---|---|
8 | |
5 | |
4 | |
4 | |
2 |