Make your text pop in Power BI
Formatting text in Power BI can be challenging, but it’s possible with the right approach.
Here’s a step-by-step guide to enhance text formatting using the HTML visual in Power BI:
Watch the tutorial:
The code:
If you want to format the bulleted list individually use this:
<!DOCTYPE html>
<html>
<body>
<h2 style="font-family: 'Segoe UI Semibold'; color: #6BADDB">Reward them!</h2>
<ul>
<li style="list-style-type:circle;font-family: 'Segoe UI';font-size: 12pt;">Give them <span style="color:black; font-weight: 700">exclusive </span> offers</li>
<li style="list-style-type:circle;font-family: 'Segoe UI';font-size: 12pt">Implement loyalty <span style="color:black; font-weight: 700">rewards </span> (if you offer them)</li>
<li style="list-style-type:circle;font-family: 'Segoe UI';font-size: 12pt">Provide <span style="color:black; font-weight: 700">early access </span>to new products</li>
<li style="list-style-type:circle;font-family: 'Segoe UI';font-size: 12pt">Invite them to leave a <span style="color:black; font-weight: 700">review </span></li>
</ul>
</body>
</html>
If you want to apply the same format to all elements, use this:
<!DOCTYPE html><html>
<head>
<style>
h2 {style="font-family: 'Segoe UI Semibold'; color: #6BADDB}
li {list-style-type:circle; font-family: 'Segoe UI';font-size: 16pt; color: #666666 }
span {color:#666666; font-weight:700;}
</style>
</head>
<body>
<h2>Reward them!</h2>
<ul>
<li>Give them <span>exclusive</span> offers</li>
<li>Implement <span>loyalty rewards</span> or increase them</li>
<li>Ask for <span> reviews</span> </li>
</ul></body></html>
Resources mentioned:
Get file:
Go to Download Center > Community Downloads > 086 Make text pop
Was this helpful?
Reader Interactions