Is there something extra required to be able to create a spreadsheet that uses spreadsheet functions?
A partial repro of my code:
project_points = ''.join(map(lambda r: f'<td>=$C{row_index}</td>', project_range))
sheet_content_list.append(f'<tr>{project_points}</tr>')
sprint_summary_sheet = client.new_document(content=''.join(sheet_content_list), title=sheet_title, member_ids=["<redacted>"], type='spreadsheet')
Expected results:
A spreadsheet where the formulas are used.
Actual results:
#ERROR in the spreedsheet until I press enter on the cell.
Is there something extra required to be able to create a spreadsheet that uses spreadsheet functions?
A partial repro of my code:
Expected results:
A spreadsheet where the formulas are used.
Actual results:
#ERROR in the spreedsheet until I press enter on the cell.