I am using the following in an attempt to create a Collection in Power Apps.
Collect(
GanttTaskList,
{
ID: Round(Rand()*10000,0),
StartDate: StartDatePicker.SelectedDate,
EndDate: EndDatePicker.SelectedDate,
TaskName: TaskNameTxtFld.Text,
AssignedTo: AssignedTo.SelectedText.Value,
StatusLevel: StatusLevel.SelectedText.Value}
);
Reset(StartDatePicker);
Reset(EndDatePicker);
Reset(AssignedTo);
Reset(StatusLevel);
These are the fields and associated button in the Power App.
The Collection name is created but no columns of data appear.
Solved! Go to Solution.
Solved!
I missed a step (that is to involved to describe her.
Solved!
I missed a step (that is to involved to describe her.