Hi - I have a Power App where i am assembling data to insert new row in SmartSheet and continue to struggle to pass a record successfully to insert into my sheet.
Here is the code I am using and receiving the following: Invalid argument (Table) Expecting Untypedobject... I am new to Power App and know that the collect is probably not right approach and hoping this group can assist.
// Try this structure to pass to smartsheet directly from this OnSelect:
Collect(rowProjHours, {ProjectID: selProject, Hours:txt_hours.Text, WorkItemDesc: txt_workdescription.Text, MilestoneDeliverable: txt_milestonedeliverabledesc.Text, Resource:ddl_resource.SelectedText.Value, IncludeClientInvoice: chk_includeclientinvoice.Value });
Smartsheet.InsertRow(selProject.id,rowProjHours);
Thanks in advance!