How to put a space in this table in VBA?

VBAEXCELNew

New Member
Joined
Apr 3, 2023
Messages
38
Office Version
  1. 365
  2. 2021
Platform
  1. Windows
Hello,
Currently i have a vba script that does a table however i want my vertical line to be longer but i couldnt manage to do it
Sample:
1681911427431.png

How can i add a space after my Quotation / Dc No.: and as well goes to my message afterward ?

here my Vba script

VBA Code:
                HtmlContent = HtmlContent & "<br><table style='border-collapse: collapse;'><tbody>"
                HtmlContent = HtmlContent & "<tr><th style='border: 1px solid black; text-align: left; padding-bottom: 1em; '>Quotation / DC No.:</th><td style='border: 1px solid black;'>" & R.Offset(0, -2) & "</td></tr>"
                HtmlContent = HtmlContent & "<tr><th style='border: 1px solid black; text-align: left; padding-bottom: 1em; '>Description:</th><td style='border: 1px solid black'>" & R.Offset(0, -1) & "</td></tr> "
                HtmlContent = HtmlContent & "<tr><th style='border: 1px solid black; text-align: left; padding-bottom: 1em; '>Status:</th><td style='border: 1px solid black'>" & "Error Message: " & R.Offset(0, -3) & "<br>" & "Remarks 1: " & R.Offset(0, 2) & "</td></tr>"
                HtmlContent = HtmlContent & "<tr><th style='border: 1px solid black; text-align: left; padding-bottom: 1em; '>Remarks:</th> <td style='border: 1px solid black'>" & R.Offset(0, 5) & "</td></tr>"
                HtmlContent = HtmlContent & "</tbody></table><br>"
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.

Forum statistics

Threads
1,215,084
Messages
6,123,024
Members
449,092
Latest member
ikke

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top