My Flow is running successfully. It first makes a html table and compose by style code. it sent it by email.
Only the changes i want to do is to apply the format on the "SvcExpense" column. For example amount column has
1230 - i want to show as 1230.00
1058.46 - i want to show as 1058.46
Also please find image of the output I am getting.

I am aware that it can done by Format() function, but don't know how and where to apply.
Please guide what changes to do to my style/css code to achieve this requirement.
<style>
#table1 {
border: 1px solid #1C6EA4;
background-color: #EEEEEE;
width: 100%;
text-align: left;
font-family:calibri;
padding: 3px 2px;
border-collapse: collapse;
}
#table1 td, #table1 th {
border: 1px solid #AAAAAA;
padding: 3px 2px;
}
#table1 tbody td {
font-size: 13px;
}
#table1 thead {
background: #1C6EA4;
border-bottom: 2px solid #444444;
}
#table1 thead th {
font-size: 14px;
font-weight: bold;
color: #FFFFFF;
border-left: 2px solid #D0E4F5;
}
#table1 thead th:first-child {
border-left: none;
}
</style>