How to write variable in row[ var ]
-
in below code how can I write variable instead of number 1 in row[1]
{{#xlsxReplace "xl/worksheets/sheet1.xml" "worksheet.sheetData[0].row[1].c[6]"}}
<c t="inlineStr"><is><t>{{value}}</t></is></c>
{{/xlsxReplace}}
-
Write your own helper that creates dynamic path based on the input variables.
See it in this demo
https://playground.jsreport.net/w/jan_blaha/wFq~T2U1
-
Thanks @jan_blaha. This was really helpful.