I need to populate a form with data from a multisheet excel workbook. I have tried writing a VBA script to serialize to Json but it seems very labor intensive and have looked into a plugin named jquery.populate but couldn't figure that one out.
Here is sample:
<fieldset>
<div class="_50"><strong>Phytoplankton CNP Sample ID:</strong><input type="text" name="phyCNP"></div>
<div class="_25">D1 Filtered (mL):<input type="text" name="2D1"></div>
<div class="_25">D2 Filtered (mL):<input type="text" name="2D2"></div>
</fieldset>
<fieldset>
<div class="_50"><strong>Algae Sample ID:</strong><input type="text" name="algae"></div>
<div class="_25"> <label></label>
<input type="radio" id="radPeri1mod" name="algae" data-mini="true"/>
<label for="radPeri1mod">PERI-1-MOD</label>
<label> </label>
<input type="radio" id="radPeri1" name="algae" data-mini="true"/>
<label for="radPeri1">PERI-1</label></div>
<div class="_25"> Other: <input type="text" id="textOther" name="algae" /></div>
</fieldset>
1.What is best method to populate fields from excel multisheet workbook?
2.Is there a way to add fieldsets on the fly based on the number of excel fieldsets? The fieldset above may have one set of data or 5 sets of data. I only want one empty set in the base form.