Hi,
I wish to collect a few choice columns choices into dropdowns, if i use the code
If(
Connection.Connected,
ClearCollect(
colLVPrestarts,
{
ShiftTypeText: "",
CrewTypeText: "",
DepartmentText: ""
}
);
Collect(
colLVPrestarts,
( AddColumns(
'LV Prestarts',
"ShiftTypeText",
Shifttype.Value,
"CrewTypeText",
Crew.Value,
"DepartmentText",
Department.Value
) )
)
)
I get the choices used however i wish to gain the list items from sharepoint ie

not the ones that have been used in the last 2000 entries ie

I also need it too pull the information from sharepoint not type in ["A","B" etc etc] in the items
Also how would i patch it after wards too?