Hi, we have signed up for support and am creating the support request now
Posts made by yvonnegw-ics
-
RE: XLSX recipe very slow with multiple sheets and formulas
-
XLSX recipe very slow with multiple sheets and formulas
Hi, we have a xslx template with multiple sheets and lots of formulas on each. We are trying to use the xlsx recipe to add data,, but even turning off the calcs and just running the spreadsheet is taking over 10 mins.
{{#xlsxMerge "xl/workbook.xml" "workbook.calcPr[0]"}}
<calcPr calcMode="manual"/>
{{/xlsxMerge}}{{{xlsxPrint}}}
Is there a way to speed this up?
-
RE: Unable to render the xlsx file which is having multiple worksheets
Hi We are having the same issue. Any formula with a cross-sheet reference is throwing the same error.
Error while executing xlsx recipe
(because) error when evaluating engine handlebars for template anonymous
(because) parse error on line 15:
...rmula='-E158'Fixed Data'!$B$25/10^2'}}<
-----------------------^
Expecting 'EQUALS', got 'INVALID'*We are using version: 3.11.3
-
RE: Accessing lookup data from main context when in a component
Thank you so much - that is working perfectly now.
-
Accessing lookup data from main context when in a component
Hi, another newbie.
I have a complex JSON structure for my data which includes lookup data - below is a simplified version
{ "lkpCodes": { "SeverityLkp": {"0": "severity-0", "1": "severity-1", "2": "severity-2", "3": "severity-3", "4": "severity-4", "5": "severity-5" } }, "Need": { "NeedId": "N00001363", "Assessments": { "A1": [{"period": "2023","severity": "1"},{"period": "2024","severity": "1"},{"period": "2025","severity": "2"},{"period": "2026","severity": "3"}], "A2": [{"period": "2023","severity": "0"},{"period": "2024","severity": "1"},{"period": "2025","severity": "2"},{"period": "2026","severity": "3"}], "A3": [{"period": "2023","severity": "2"},{"period": "2024","severity": "2"},{"period": "2025","severity": "3"},{"period": "2026","severity": "4"}] }} }
Depending on client requirements I need to show one or more of the assessments (ie might only want A2) so I call a component passing only the data for the required assessment
{{#with (lookup this.Need.Assessments 'A1') }} {{component "showAssessment" }} {{/with}}
I need to use the severity value to lookup the class name from the SeverityLkp in lkpCodes but cant figure out how to access this from within the component. I thought i could get it from @root but this only holds the current data within the component (ie in this case the data for A1).
Thanks in advance
Yvonne