Capture report not capturing all static values if no merged cell in the report.
load_report_template method to include following statement to address this issue:
Line 90:
if len(rng_startcell) > 0 and cell_ref not in rng_startcell:
to be amended as:
if (len(rng_startcell) > 0 and cell_ref not in rng_startcell) or len(rng_startcell)==0:
Capture report not capturing all static values if no merged cell in the report. load_report_template method to include following statement to address this issue: Line 90: if len(rng_startcell) > 0 and cell_ref not in rng_startcell:
to be amended as: if (len(rng_startcell) > 0 and cell_ref not in rng_startcell) or len(rng_startcell)==0: