
Hi Power Automate Community,
I am trying to format the borders of my HTML table. But it seems to have a strange gap between the columns. I am trying to remove the gap in order to make the table in a more modern way.
This is how I created this table:
Create HTML Table with output from Select
Replace the brackets in proper HTML format:
replace(replace(replace(replace(replace(
body('Create_HTML_table'),'<','<'),'>','>'),'&','&'),''','"'),'"','"')
replace(outputs('Clean_HTML'),'<table>','<table border="1">')
Any help will be much appreciated.
Thanks.
Hi @JB0007
The gap appears to be an actual column inserted via the html. In the code look if any invisible character like space, line break or anything like that is creating the column.
Also take your html, add some dummy values and test it in any sample html editor and see how it goes.