Hi @JSawyer ,
Do you want to create multiple Slot records once time based on the entered number within the TextInput Box?
Based on the needs that you mentioned, I think the ForAll function and Patch function could achieve your needs. Please consider take a try with the following workaround:
Set the OnSelect property of the "Submit" button to following:
ForAll(
FirstN([1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25, ...., 98, 99, 100], If(IsBlank(SlotNumberTextInput.Text), 1, Value(SlotNumberTextInput.Text))),
Patch(
'Your SP List',
Defaults('Your SP List'),
{
Title: "Slot Create For " & User().FullName,
Status: StatusComboBox.Selected,
Date: DatePicker1.SelectedDate,
'Half day time period': HalfDayTimePeriodComboBox.Selected
}
)
)
Note: The SubmitForm function could not achieve your needs.
Please consider take a try with above solution, check if the issue is solved.