Let's say I have a chart as so
<table style="width: 246px; height: 76px;" border="0" cellpadding="0" cellspacing="0"><col style="mso-width-source:userset;mso-width-alt:3401;width:70pt" width="93"> <col style="mso-width-source:userset;mso-width-alt:3145;width:65pt" width="86"> <tbody><tr style="height:12.75pt" height="17"> <td style="height:12.75pt;width:70pt" height="17" width="93">Id Number</td> <td style="width:65pt" width="86">Person Name</td> </tr> <tr style="height:12.75pt" height="17"> <td class="xl24" style="height:12.75pt" height="17">0001</td> <td>Ricky</td> </tr> <tr style="height:14.25pt" height="19"> <td class="xl24" style="height:14.25pt" height="19">0002</td> <td>Bobby</td> </tr> </tbody></table>
If I wanted to add a third name, let's say "Junior", would it be possible to automatically populate the Id number based on the previous entry?
Thanks
<table style="width: 246px; height: 76px;" border="0" cellpadding="0" cellspacing="0"><col style="mso-width-source:userset;mso-width-alt:3401;width:70pt" width="93"> <col style="mso-width-source:userset;mso-width-alt:3145;width:65pt" width="86"> <tbody><tr style="height:12.75pt" height="17"> <td style="height:12.75pt;width:70pt" height="17" width="93">Id Number</td> <td style="width:65pt" width="86">Person Name</td> </tr> <tr style="height:12.75pt" height="17"> <td class="xl24" style="height:12.75pt" height="17">0001</td> <td>Ricky</td> </tr> <tr style="height:14.25pt" height="19"> <td class="xl24" style="height:14.25pt" height="19">0002</td> <td>Bobby</td> </tr> </tbody></table>
If I wanted to add a third name, let's say "Junior", would it be possible to automatically populate the Id number based on the previous entry?
Thanks