Hi @ericonline,
Could you please share a bit more about your app's configuration?
Is the Edit form connected to the Collection (colWorkSummary)?
Further, do you want to display event_type value of the Collection within the Select Type Drop down control and display event_detail value of the Collection within the Select Detail Drop down control?
I have made a test on my side, please take a try with the following workaround:

Set the OnVisible property of the Screen to following formula:
ClearCollect(
colWorkSummary,
{
comments:"No comments",
event_detail:"Ditching",
event_type:"Production",
hours2:"08",
id:1,
minutes:"00"
},
{
comments:"No comments",
event_detail:"Ditching1",
event_type:"Development",
hours2:"12",
id:1,
minutes:"30"
}
)
Set the Items property of the SelectType Drop down control to following formula:
Distinct(colWorkSummary,event_type)
Set the Items property of the SlectDetail Drop down control to following formula:
Distinct(colWorkSummary,event_detail)
On your side, please take a try to set the Default property of the Select Type Drop down control to following formula:
ThisItem.event_type
Set the Default property of the Select Detail Drop down control to following formula:
ThisItem.event_detail
Or
Set the Items property of the Select Type Drop down control to following formula:
Distinct(colWorkSummary,event_type)
Set the Items property of the Select Detail Drop down control to following formula:
Distinct(colWorkSummary,event_detail)
Best regards,
Kris