I am extremely new to HTML and Javascript and have been winging it this far but Excel can only get me so far. Below is what I have laid out right now.
My idea is to have the I date always be todays date + the I Days ("=today()
14"
in Excel)
My code is probably a mess but this is a work in progress and will eventually be part of a full table of about 8 rows after the header.
<!DOCTYPE html>
<html>
<body>
<table>
<table border="1">
<tr>
<th>**Code**</th>
<th>**Days**</th>
<th>**Date**</th>
</tr>
<tr>
<td id="I Code">I</td>
<td id="I Days">14</td>
<td id="I Date">15/10/2017</td>
</tr>
</table>
<input type="submit" value="Send">
<input type="reset" value="Reset">
</body>
</html>
</body>
</html>