Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
JacqBogal
Regular Visitor

HTML content Column Headers

Hi, I am trying to Create an HTML Table using a measure as my values input for the HTML Content Visual. 

The problem I am encountering is that I see my column headers repeating for every row I have when I add a measure for the granularity of the data.
Most Solutions online are quite outdated and tell me to input the Header with column names within the Formatting sections in the Visualizations Pane, however this is not available within the HTML Content Visual anymore.

 

Has anyone else come across this issue and found a work around so that the column headers are not repeated for every row?

 

Thanks in advance!

 

1 ACCEPTED SOLUTION

HTML Test 2 = 
VAR Sales = summarize(Financials,Financials[Country],"sales","<tr><td><b>" & FORMAT([$ Sales], "$#,##0") & "</b></td></tr>")
RETURN "<HTML><table><tr><th>Total Sales</th></tr>" & CONCATENATEX(Sales,[sales]) & "</table></HTML>"

see attached.

View solution in original post

4 REPLIES 4
JacqBogal
Regular Visitor

 Here's a sample File demonstrating my current issue. This file uses the data provided by the HTML Content Visual sample..

 

Link to Sample PBIX File

 

Expected Output:

 

Total Sales 
$24,887,655
$23,505,341
$24,354,172
$20,029,830

 

HTML Test 2 = 
VAR Sales = summarize(Financials,Financials[Country],"sales","<tr><td><b>" & FORMAT([$ Sales], "$#,##0") & "</b></td></tr>")
RETURN "<HTML><table><tr><th>Total Sales</th></tr>" & CONCATENATEX(Sales,[sales]) & "</table></HTML>"

see attached.

It works! 

 

the code does get the job done! 

I guess my only concern now is in terms of performance of the Summarize function when dealing with large data sets.

 

Thanks for the help! 

lbendlin
Super User
Super User

Please provide sample data that covers your issue or question completely, in a usable format (not as a screenshot).
https://community.powerbi.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-...
Please show the expected outcome based on the sample data you provided.

https://community.powerbi.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors