Login Page - Create Account

Support Board


Date/Time: Wed, 27 Nov 2024 10:26:02 +0000



Post From: Spreadsheet interaction ACSIL

[2023-09-03 10:06:28]
User431178 - Posts: 544
CollectionData.cpp:65:15: error: redeclaration of 'const char* SheetCollectionName'


const char* SheetCollectionName = Input_SpreadsheetName.GetString();
const char* SheetCollectionName = "Data Collection 2";

Delete one of the above lines.


CollectionData.cpp:68:23: error: 'GetSpreadsheetSheetHandleByName' was not declared in this scope

this

void* SheetHandle = GetSpreadsheetSheetHandleByName(SheetCollectionName, SheetName, CreateSheetIfNotExist);

should be

void* SheetHandle = sc.GetSpreadsheetSheetHandleByName(SheetCollectionName, SheetName, CreateSheetIfNotExist);

sc.GetSpreadsheetSheetHandleByName()