cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Specoop
Advocate II
Advocate II

html to pdf conversion issue

Hello Flow Community! 

 

I'm attempting to convert a .HTML to a .PDF using (Shane Young's method). Here's my flow.

1.jpg

 

When I run it, it creates a beautiful HTML (left side image below). Works perfectly.

 

My issue: When I click on the .PDF (right side image below), it gives me an incomplete table that doesn't look as expected. 

 

2.jpg

 

Full disclosure - this is my first HTML - so my HTML may be the issue...but I've tried a bunch of stull (taking out the styling etc.) and just can't get it anywhere close.

 

Any guidance would be much appreciated.

 

Here's the full Step 2 of the flow:

 

concat('<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
padding: 3px;
}
table#main {
border: 1.5px solid black;
border-collapse: collapse;
width: 85%;
}
table#main th, td {
border: 1px solid black;
border-collapse: collapse;
}

{table#signature {
width: 80%
}

</style>
</head>
<body>
<center>
<b> Monthly Inspection Report </b>
<br>
<EM>Inspection performed by certified personnel at least once per month</EM>
<br><br>
<table id="main">
<tr>
<th colspan="4">Project Information </th></tr>
<tr>
<td>Date: </td>
<td><em><center> POWERAPPS </center></em> </td>
<td>Project Name:</td>
<td><em><center> POWERAPPS </center> </em> </td></tr>
<tr>
<td colspan="4">Project Location:<em> POWERAPPS </em></td></tr>
<tr>
<th colspan="4">Inspection Observations</th>
<tr>
<td rowspan="2">Rainfall within past 24 hours (inches):</td>
<td rowspan="2"><em><center> POWERAPPS </center></em></td>
<td> Is rainfall greater than 0.5 inches?: </td>
<td><EM><center> POWERAPPS </center> </EM></td>
 
<tr>
<td> Inspection Required </td>
<td> <em><center> Yes </center> </em></td> </tr>
<tr>
<th colspan="4">Inspection Observations</th></tr>
<tr>
<td colspan="4"> Areas that have undergone final stabilization:</td></tr>
<tr>
<td colspan="3"> Are all permanent stabilization controls contained in Plan in place? </td>
<td colspan="1"> <em><center> POWERAPPS </center></em></td></tr>
<tr>
<td colspan="4"> If no, describe the location(s) of deficiencies and corrective actions that must be taken: </td></tr>
<tr>
<td colspan="4", height="70"> <em><center> POWERAPPS </center></em> </td></tr>
<tr>
<td colspan="4"> Other Observations: </td> </tr>
<tr>
<td colspan="3"> Are pollutants entering the drainage system or receiving waters? </td>
<td colspan="1"> <em><center> POWERAPPS </center></em></td> </tr>
<tr>
<td colspan="4"> If yes, describe the location(s) and the corrective actions that must be taken.</td> </tr>
<tr>
<td colspan="4", height="50"> <em><center> POWERAPPS </center></em></td></tr>
<tr>
<td colspan="3"> Are all erosion and sediment control measures operating properly? </td>
<td colspan="1"> <em><center> POWERAPPS </center></em></td></tr>
<tr>
<td colspan="4"> If no, describe the location(s) and the corrective actions that must be taken.</td></tr>
<tr>
<td colspan="4", height="50"> <em><center> POWERAPPS </center></em> </td> </tr>
<tr>
<td colspan="4"> Other Observations: <em> POWERAPPS </em> </td> </tr>
<tr>
<td colspan="4", height="70"> <em><center> POWERAPPS </center> </em> </td> </tr>
<tr>
<td colspan="2"> Is an Erosion, Sedimentation and Pollution Control Plan revision required?</td>
<td colspan="1"> <em><center> POWERAPPS </center></em> </td>
<td colspan="1"> <center> Date of Revision:<em> POWERAPPS </em></center> </td></tr>
<tr>
<td colspan="4"> Corrective Actions and Date</td></tr>
<tr>
<td colspan="4", height="70"> <em><center> POWERAPPS </center></em></td></tr>
</table>
<br> <br>

<table id="signature">
 
<tr>
<th colspan="2", height="20"> POWERAPPS </th>
<th colspan="2", height="20"> POWERAPPS </th> </tr>
<tr>
<th colspan="2">__________________________________ </th>
<th colspan="2">__________________________________</th> </tr>
<tr>
<th colspan="2">Signature of Certified Personnel </th>
<th colspan="2">Printed Name of Certified Personnel</th> </tr>
</table>
</center>
</body>
</html>
')

 

 

Thanks again for the support and the community.

 

Best,

Spencer

1 ACCEPTED SOLUTION

Accepted Solutions
LeeHarris
Solution Sage
Solution Sage

Hi @Specoop

 

I managed to get your HTML closer to what you want, there were some issues with <tr> tags, though its still not perfect. For some reason the second table doesn't display when converted to the PDF.

 

<html>
	<head>
		<style>

#main {
border: 1.5px solid black;
border-collapse: collapse;
width: 85%;
margin-left: auto;
margin-right: auto;
}

#main th, #main td {
border: 1px solid black;
border-collapse: collapse;
}

#signature {
width: 80%;
margin-left: auto;
margin-right: auto;
}

		</style>
	</head>
	<body>
		<center>
			<b> Monthly Inspection Report </b>
			<br>
				<EM>Inspection performed by certified personnel at least once per month</EM>
				<br>
					<br>
						<table id="main">
							<tr>
								<th colspan="4">Project Information </th>
							</tr>
							<tr>
								<td>Date: </td>
								<td>
									<em>
										<center> POWERAPPS </center>
									</em>
								</td>
								<td>Project Name:</td>
								<td>
									<em>
										<center> POWERAPPS </center>
									</em>
								</td>
							</tr>
							<tr>
								<td colspan="4">Project Location:<em> POWERAPPS </em>
								</td>
							</tr>
							<tr>
								<th colspan="4">Inspection Observations</th>
							</tr>
							<tr>
								<td rowspan="2">Rainfall within past 24 hours (inches):</td>
								<td rowspan="2">
									<em>
										<center> POWERAPPS </center>
									</em>
								</td>
								<td> Is rainfall greater than 0.5 inches?: </td>
								<td>
									<EM>
										<center> POWERAPPS </center>
									</EM>
								</td>
							</tr>
							<tr>
								<td> Inspection Required </td>
								<td>
									<em>
										<center> Yes </center>
									</em>
								</td>
							</tr>
							<tr>
								<th colspan="4">Inspection Observations</th>
							</tr>
							<tr>
								<td colspan="4"> Areas that have undergone final stabilization:</td>
							</tr>
							<tr>
								<td colspan="3"> Are all permanent stabilization controls contained in Plan in place? </td>
								<td colspan="1">
									<em>
										<center> POWERAPPS </center>
									</em>
								</td>
							</tr>
							<tr>
								<td colspan="4"> If no, describe the location(s) of deficiencies and corrective actions that must be taken: </td>
							</tr>
							<tr>
								<td colspan="4", height="70">
									<em>
										<center> POWERAPPS </center>
									</em>
								</td>
							</tr>
							<tr>
								<td colspan="4"> Other Observations: </td>
							</tr>
							<tr>
								<td colspan="3"> Are pollutants entering the drainage system or receiving waters? </td>
								<td colspan="1">
									<em>
										<center> POWERAPPS </center>
									</em>
								</td>
							</tr>
							<tr>
								<td colspan="4"> If yes, describe the location(s) and the corrective actions that must be taken.</td>
							</tr>
							<tr>
								<td colspan="4", height="50">
									<em>
										<center> POWERAPPS </center>
									</em>
								</td>
							</tr>
							<tr>
								<td colspan="3"> Are all erosion and sediment control measures operating properly? </td>
								<td colspan="1">
									<em>
										<center> POWERAPPS </center>
									</em>
								</td>
							</tr>
							<tr>
								<td colspan="4"> If no, describe the location(s) and the corrective actions that must be taken.</td>
							</tr>
							<tr>
								<td colspan="4", height="50">
									<em>
										<center> POWERAPPS </center>
									</em>
								</td>
							</tr>
							<tr>
								<td colspan="4"> Other Observations: <em> POWERAPPS </em>
								</td>
							</tr>
							<tr>
								<td colspan="4", height="70">
									<em>
										<center> POWERAPPS </center>
									</em>
								</td>
							</tr>
							<tr>
								<td colspan="2"> Is an Erosion, Sedimentation and Pollution Control Plan revision required?</td>
								<td colspan="1">
									<em>
										<center> POWERAPPS </center>
									</em>
								</td>
								<td colspan="1">
									<center> Date of Revision:<em> POWERAPPS </em>
									</center>
								</td>
							</tr>
							<tr>
								<td colspan="4"> Corrective Actions and Date</td>
							</tr>
							<tr>
								<td colspan="4", height="70">
									<em>
										<center> POWERAPPS </center>
									</em>
								</td>
							</tr>

						</table>
						<br>
							<br>

								<table id="signature">

									<tr>
										<th colspan="2", height="20"> POWERAPPS </th>
										<th colspan="2", height="20"> POWERAPPS </th>
									</tr>

									<tr>
										<th colspan="2">__________________________________ </th>
										<th colspan="2">__________________________________</th>
									</tr>
									<tr>
										<th colspan="2">Signature of Certified Personnel </th>
										<th colspan="2">Printed Name of Certified Personnel</th>
									</tr>
									<tr>

									</table>
								</center>
							</body>
						</html>

Did I answer your question? Mark my post as a solution!

Follow me on Twitter at @QG_LeeJHarris

Or on LinkedIn at in/leejharris

View solution in original post

10 REPLIES 10
v-yamao-msft
Community Support
Community Support

Hi @Specoop,

 

I am afraid that there might be something wrong with the HTML table code you are using in Step 2.

When testing with the code you provided on my side, both the html file and pdf file display the same incomplete table as you mentioned.

However, it works fine when using the following example code:

 

concat('<!DOCTYPE html>

<html>

<head>

<style>

table {

  font-family: arial, sans-serif;

  border-collapse: collapse;

  width: 100%;

}

 

td, th {

  border: 1px solid #dddddd;

  text-align: left;

  padding: 8px;

}

 

tr:nth-child(even) {

  background-color: #dddddd;

}

</style>

</head>

<body>

 

<h2>HTML Table</h2>

 

<table>

  <tr>

    <th>Company</th>

    <th>Contact</th>

    <th>Country</th>

  </tr>

  <tr>

    <td>Alfreds Futterkiste</td>

    <td>Maria Anders</td>

    <td>Germany</td>

  </tr>

  <tr>

    <td>Centro comercial Moctezuma</td>

    <td>Francisco Chang</td>

    <td>Mexico</td>

  </tr>

  <tr>

    <td>Ernst Handel</td>

    <td>Roland Mendel</td>

    <td>Austria</td>

  </tr>

  <tr>

    <td>Island Trading</td>

    <td>Helen Bennett</td>

    <td>UK</td>

  </tr>

  <tr>

    <td>Laughing Bacchus Winecellars</td>

    <td>Yoshi Tannamuri</td>

    <td>Canada</td>

  </tr>

  <tr>

    <td>Magazzini Alimentari Riuniti</td>

    <td>Giovanni Rovelli</td>

    <td>Italy</td>

  </tr>

</table>

 

</body>

</html>

')

 

Please check your HTML table code and try again with it.

 

Best regards,

Mabel

 

Community Support Team _ Mabel Mao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thank you Mabel!

 

I tried your provided example 

 

 

Here's the HTML (looks great)

3.jpg

 

Here's the PDF (missing styling)

4.jpg

Does yours lose formatting also when it converts?

 

Thanks again,

Hi @Specoop,

 

Both the HTML file and PDF file are in the same format likes below:

1.PNG 

 

Best regards,

Mabel

 

Community Support Team _ Mabel Mao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
LeeHarris
Solution Sage
Solution Sage

Hi @Specoop

 

I managed to get your HTML closer to what you want, there were some issues with <tr> tags, though its still not perfect. For some reason the second table doesn't display when converted to the PDF.

 

<html>
	<head>
		<style>

#main {
border: 1.5px solid black;
border-collapse: collapse;
width: 85%;
margin-left: auto;
margin-right: auto;
}

#main th, #main td {
border: 1px solid black;
border-collapse: collapse;
}

#signature {
width: 80%;
margin-left: auto;
margin-right: auto;
}

		</style>
	</head>
	<body>
		<center>
			<b> Monthly Inspection Report </b>
			<br>
				<EM>Inspection performed by certified personnel at least once per month</EM>
				<br>
					<br>
						<table id="main">
							<tr>
								<th colspan="4">Project Information </th>
							</tr>
							<tr>
								<td>Date: </td>
								<td>
									<em>
										<center> POWERAPPS </center>
									</em>
								</td>
								<td>Project Name:</td>
								<td>
									<em>
										<center> POWERAPPS </center>
									</em>
								</td>
							</tr>
							<tr>
								<td colspan="4">Project Location:<em> POWERAPPS </em>
								</td>
							</tr>
							<tr>
								<th colspan="4">Inspection Observations</th>
							</tr>
							<tr>
								<td rowspan="2">Rainfall within past 24 hours (inches):</td>
								<td rowspan="2">
									<em>
										<center> POWERAPPS </center>
									</em>
								</td>
								<td> Is rainfall greater than 0.5 inches?: </td>
								<td>
									<EM>
										<center> POWERAPPS </center>
									</EM>
								</td>
							</tr>
							<tr>
								<td> Inspection Required </td>
								<td>
									<em>
										<center> Yes </center>
									</em>
								</td>
							</tr>
							<tr>
								<th colspan="4">Inspection Observations</th>
							</tr>
							<tr>
								<td colspan="4"> Areas that have undergone final stabilization:</td>
							</tr>
							<tr>
								<td colspan="3"> Are all permanent stabilization controls contained in Plan in place? </td>
								<td colspan="1">
									<em>
										<center> POWERAPPS </center>
									</em>
								</td>
							</tr>
							<tr>
								<td colspan="4"> If no, describe the location(s) of deficiencies and corrective actions that must be taken: </td>
							</tr>
							<tr>
								<td colspan="4", height="70">
									<em>
										<center> POWERAPPS </center>
									</em>
								</td>
							</tr>
							<tr>
								<td colspan="4"> Other Observations: </td>
							</tr>
							<tr>
								<td colspan="3"> Are pollutants entering the drainage system or receiving waters? </td>
								<td colspan="1">
									<em>
										<center> POWERAPPS </center>
									</em>
								</td>
							</tr>
							<tr>
								<td colspan="4"> If yes, describe the location(s) and the corrective actions that must be taken.</td>
							</tr>
							<tr>
								<td colspan="4", height="50">
									<em>
										<center> POWERAPPS </center>
									</em>
								</td>
							</tr>
							<tr>
								<td colspan="3"> Are all erosion and sediment control measures operating properly? </td>
								<td colspan="1">
									<em>
										<center> POWERAPPS </center>
									</em>
								</td>
							</tr>
							<tr>
								<td colspan="4"> If no, describe the location(s) and the corrective actions that must be taken.</td>
							</tr>
							<tr>
								<td colspan="4", height="50">
									<em>
										<center> POWERAPPS </center>
									</em>
								</td>
							</tr>
							<tr>
								<td colspan="4"> Other Observations: <em> POWERAPPS </em>
								</td>
							</tr>
							<tr>
								<td colspan="4", height="70">
									<em>
										<center> POWERAPPS </center>
									</em>
								</td>
							</tr>
							<tr>
								<td colspan="2"> Is an Erosion, Sedimentation and Pollution Control Plan revision required?</td>
								<td colspan="1">
									<em>
										<center> POWERAPPS </center>
									</em>
								</td>
								<td colspan="1">
									<center> Date of Revision:<em> POWERAPPS </em>
									</center>
								</td>
							</tr>
							<tr>
								<td colspan="4"> Corrective Actions and Date</td>
							</tr>
							<tr>
								<td colspan="4", height="70">
									<em>
										<center> POWERAPPS </center>
									</em>
								</td>
							</tr>

						</table>
						<br>
							<br>

								<table id="signature">

									<tr>
										<th colspan="2", height="20"> POWERAPPS </th>
										<th colspan="2", height="20"> POWERAPPS </th>
									</tr>

									<tr>
										<th colspan="2">__________________________________ </th>
										<th colspan="2">__________________________________</th>
									</tr>
									<tr>
										<th colspan="2">Signature of Certified Personnel </th>
										<th colspan="2">Printed Name of Certified Personnel</th>
									</tr>
									<tr>

									</table>
								</center>
							</body>
						</html>

Did I answer your question? Mark my post as a solution!

Follow me on Twitter at @QG_LeeJHarris

Or on LinkedIn at in/leejharris

Thank you both!

LeeHarris, you're updated code got me there (or at least really darn close).  I really appreciate the help.

 

See below for final code on second table that appeared in both the HTML and PDF.

 

You're awesome! Sending you a PM.

 

<table id="signature">

<tr>

<th> POWERAPPS </th>

<th> POWERAPPS </th>

</tr>

<tr><th>__________________________________ </th>                                                                                                                                                <th>__________________________________</th>

</tr>

<tr>

<th>Signature of Certified Personnel </th>

<th>Printed Name of Certified Personnel</th>

</tr>

</table>

</center>

</body>

</html>

Anonymous
Not applicable

I'm experiencing a similar issue. I can't get one of my rowspans to format properly when converted to a pdf through flow. It looks perfectly fine when using an online html viewer

 

Here is the resulting code from my powerapp

<style>
    table,
    th,
    td {
        border-style: solid;
        border-width: 1px;
        text-align: left;
        border-collapse: collapse;
        padding: 10px 5px;
    }
    
    .noborder {
        border-style: none;
    }
</style>
<h1>T-Mobile</h1>
<h2>DRIVER'S VEHICLE INSPECTION REPORT</h2>
<div>AS REQUIRED BY THE D.O.T FEDERAL MOTOR CARRIER SAFETY REGULATIONS</div>
<br>
<div><b>MARKET LOCATION: </b>AL</div>
<div><b>DRIVER'S NAME: </b>Justin Cole</div>
<div><b>Date: </b>7/10/2019<b> Time: </b>15:02</div>
<div><b>Truck/SUV NO.: </b>51651<b> ODOMETER READING: </b>6541</div>
<div><font SIZE='.1'>CHECK ANY DEFECTIVE ITEM AND GIVE DETAILS UNDER 'REMARKS'</font></div>
<table class='tg'>
    <tr>
        <td></td>
        <td>Air Compressor</td>
        <td></td>
        <td>Front Axle</td>
        <td rowspan='6'></td>
        <td rowspan='6'>Safety Equipment
            <ul>
                <li>Fire Extinguisher</li>
                <li>Flags - Flares - Fuses</li>
                <li>Reflective Triangles</li>
                <li>Spare Bulbs and Fuses</li>
                <li>Spare Seal Beam</li>
            </ul>
        </td>
    </tr>
    <tr>
        <td></td>
        <td>Air Lines</td>
        <td></td>
        <td>Fuel Tanks</td>
    </tr>
    <tr>
        <td></td>
        <td>Battery</td>
        <td></td>
        <td>Horn</td>
    </tr>
    <tr>
        <td></td>
        <td>Belts and Hoses</td>
        <td rowspan='5'></td>
        <td rowspan='5'>Lights
            <ul>
                <li>Head/Stop</li>
                <li>Tail/Dash</li>
                <li>Turn Indicators</li>
                <li>Clearance/Marker</li>
            </ul>
        </td>
    </tr>
    <tr>
        <td></td>
        <td>Body</td>
    </tr>
    <tr>
        <td></td>
        <td>Brake Accessories</td>
    </tr>
    <tr>
        <td>X</td>
        <td>Brakes, Parking</td>
        <td></td>
        <td>Starter</td>
    </tr>
    <tr>
        <td></td>
        <td>Brakes, Service</td>
        <td>X</td>
        <td>Steering</td>
    </tr>
    <tr>
        <td></td>
        <td>Clutch</td>
        <td></td>
        <td>Mirrors</td>
        <td></td>
        <td>Suspension System</td>
    </tr>
    <tr>
        <td></td>
        <td>Coupling Devices</td>
        <td></td>
        <td>Muffler</td>
        <td></td>
        <td>Tire Chains</td>
    </tr>
    <tr>
        <td></td>
        <td>Defroster/Heater</td>
        <td></td>
        <td>Oil Pressure</td>
        <td></td>
        <td>Tires</td>
    </tr>
    <tr>
        <td></td>
        <td>Drive Line</td>
        <td>X</td>
        <td>radiator</td>
        <td>X</td>
        <td>Transmission</td>
    </tr>
    <tr>
        <td>X</td>
        <td>Engine</td>
        <td></td>
        <td>Rear End</td>
        <td></td>
        <td>Trip Recorder</td>
    </tr>
    <tr>
        <td></td>
        <td>Exhaust</td>
        <td></td>
        <td>Reflectors</td>
        <td></td>
        <td>Wheels and Rims</td>
    </tr>
    <tr>
        <td></td>
        <td>Fifth Wheel</td>
        <td></td>
        <td></td>
        <td></td>
        <td>Windows</td>
    </tr>
    <tr>
        <td></td>
        <td>Fluid Levels</td>
        <td></td>
        <td></td>
        <td>X</td>
        <td>Windshield Wipers</td>
    </tr>
    <tr>
        <td></td>
        <td>Frame and Assembly</td>
        <td></td>
        <td></td>
        <td></td>
        <td>Other</td>
    </tr>
</table>
<div><b>Trailer Num: </b>84916</div>
<table class='tg'>
    <tr>
        <td></td>
        <td>Brake Connections</td>
        <td></td>
        <td>Hitch</td>
        <td></td>
        <td>Suspension System</td>
    </tr>
    <tr>
        <td></td>
        <td>Brakes</td>
        <td></td>
        <td>Landing Gear</td>
        <td>X</td>
        <td>Tarpaulin</td>
    </tr>
    <tr>
        <td>X</td>
        <td>Coupling Devices</td>
        <td></td>
        <td>Lights - All</td>
        <td></td>
        <td>Tires</td>
    </tr>
    <tr>
        <td></td>
        <td>Coupling (King) Pin</td>
        <td>X</td>
        <td>Reflectors/Reflective Tape</td>
        <td></td>
        <td>Wheels and Rims</td>
    </tr>
    <tr>
        <td></td>
        <td>Doors</td>
        <td></td>
        <td>Roof</td>
        <td></td>
        <td>Other</td>
    </tr>
</table>
<div><b>REMARKS: </b>These are my remarks</div>
<div>
    <table class='noborder'>
        <tr class='noborder'>
            <td class='noborder'>
                <table>
                    <tr>
                        <td></td>
                    </tr>
                </table>
            </td>
            <td class='noborder'>CONDITION OF THE ABOVE VEHICLE IS SATISFACTORY</td>
    </table>
</div>
<div><b>Driver's Signature:</b>_______________________________________</div>
<div>
    <table class='noborder'>
        <tr class='noborder'>
            <td class='noborder'>
                <table>
                    <tr>
                        <td>X</td>
                    </tr>
                </table>
            </td>
            <td class='noborder'> ABOVE DEFECTS CORRECTED</td>
    </table>
</div>
<div>
    <table class='noborder'>
        <tr class='noborder'>
            <td class='noborder'>
                <table>
                    <tr>
                        <td></td>
                    </tr>
                </table>
            </td>
            <td class='noborder'>ABOVE DEFECTS NEED NOT BE CORRECTED FOR SAFE OPERATION OF VEHICLE</td>
    </table>
</div>
<div><b>Mechanic's Signature:</b>____________________________<b>Date:</b>__________</div>
<div><b>Driver's Signature:</b>______________________________<b>Date:</b>__________</div>
nseward
Regular Visitor

I am having a similar formatting issue. 

 

The general idea is that Powerapps collects generates html code, which is then passed into a OneDrive html file in order to be converted to pdf and placed into SharePoint. The html file that is generated has the proper formatting (text over image). The pdf has the text below the image. I've added a snapshot of the flow - with the SharePoint address removed - and the html code.

 

Flow 

Capture.JPG

HTML Code

<!DOCTYPE html>
<html>
<head>
<style>
.container {
position: relative;
text-align: center;
color: black;
}

.stamp {
position: absolute;
top: 95%;
left: 50%;
}

</style>
</head>
<body>

<h2>Report</h2>
<p>April 23, 2020</p>

<div class="container">
<img src="Image Text Holder" alt="Finding" style="width:100%;">
<div class="stamp">April 23,2020</div>
</div>

</body>
</html>

 

 

Any help would be greatly appreciated.

@nseward Have you managed to resolve this issue? I am experiencing a similar problem when trying to display dynamic text on top of an image

Hi There.. I know this is an old topic. but i just want to know how to fix the <TR> tags you are talking about. i have the same issue with my current html conversion to PDF

George7
Regular Visitor

Hi There,

 

the issue is simple, I have resolved that as I was facing the same. PDFsharp 1.50.4845 the library Flow is using for generating PDFs does not support STYLE section in HEADer of HTML. So if you need any styles you have to use them within the tag itself... like <td style='color: black;'> that way all is working as expected... some tags cannot even be in style= but have to be the old old way... like the one colspan - <td style='whatever' colspan='3'.. have this in mind and you will be able to generate almost any style...  

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

Dear Community Members,   We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd.   During this period, members will not be able to Kudo, Comment, or Reply to any posts.   On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities.   What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

We are excited to announce the Summer of Solutions Challenge!    This challenge is kicking off on Monday, June 17th and will run for (4) weeks.  The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions to as many questions as you can. Answers can be provided in all the communities.    Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”)   - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024   Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods.  You must enter into each weekly Entry Period separately.   How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different.    Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers.  At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing.  Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random.  Individuals will be contacted before the announcement with the opportunity to claim or deny the prize.  Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners.   Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event.   ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE**   Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Community MembersNumber SolutionsSuper UsersNumber Solutions Deenuji 9 @NathanAlvares24  17 @Anil_g  7 @ManishSolanki  13 @eetuRobo  5 @David_MA  10 @VishnuReddy1997  5 @SpongYe  9JhonatanOB19932 (tie) @Nived_Nambiar  8 @maltie  2 (tie)   @PA-Noob  2 (tie)   @LukeMcG  2 (tie)   @tgut03  2 (tie)       Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 2: Community MembersSolutionsSuper UsersSolutionsPower Automate  @Deenuji  12@ManishSolanki 19 @Anil_g  10 @NathanAlvares24  17 @VishnuReddy1997  6 @Expiscornovus  10 @Tjan  5 @Nived_Nambiar  10 @eetuRobo  3 @SudeepGhatakNZ 8     Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 3:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji32ManishSolanki55VishnuReddy199724NathanAlvares2444Anil_g22SudeepGhatakNZ40eetuRobo18Nived_Nambiar28Tjan8David_MA22   Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 4:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji11FLMike31Sayan11ManishSolanki16VishnuReddy199710creativeopinion14Akshansh-Sharma3SudeepGhatakNZ7claudiovc2CFernandes5 misc2Nived_Nambiar5 Usernametwice232rzaneti5 eetuRobo2   Anil_g2   SharonS2  

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners.    The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights.    Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.    

Updates to Transitions in the Power Platform Communities

We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for.  We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer.   Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together.   Here's to new beginnings and endless possibilities!   If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport.   To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages

Users online (743)