Hello all,
I am trying to build some small scale project management app in Powerapps. The logic - Project -> Sub-Project -> Task.
I am currently stucked with task level. Each task has relation to project portfolio sharepoint list and sub-project portolio list through Lookup column.
I wanted to automatically populate form field with this Project and Sub-Project info when a new task is created using this approach .
Project Info:
{
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference";
ID: varcurrentItem.ID;
Value: varcurrentItem.ProjectName
}
Sub-project Info:
{
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference";
ID: varsubprojectItem.ID;
Value: varsubprojectItem.Title
}
Expected values are correctly visible in the fields but when submit the form, it doesnt transfer the values to sharepoint list. However row in sharepoint list is created and highlighting that info is expected.
During my testing I noticed that if I reselect the values from dropdown manually and submit the form, the values are transfered as expected.
I will be very glad for ideas how to ensure that default values (project and sub-project info) are sent to my sharepoint list.