@Whitakc91
So your issue with that column is that it is Title. You can never rename a column in SharePoint. It will always retain the original name. Even though you might rename in SharePoint and it will "show" that way, under the covers, it is still the same original name. So, it is Title.
PowerApps doesn't always honor name changes. In general, it wants the real (original) name. Some functions in PowerApps will honor the "changed" name, but it is best not to rely on them.
Your Formula should be changed to:
Patch('CW Calendar',
ForAll(Gallery6.AllItems,
{
Title: TextInput_EffortName.Text,
'Review Time': {Value: ComboBox_CF_RevTime.Selected.Value},
'Review Date': DatePicker_RevDate.SelectedDate,
'Review Scope': {Id: Dropdown_ScopeName.Selected.Id, Value: Dropdown_ScopeName.Selected.Value}
}
)
)
(Assuming that none of the other field names above have been changed. If so, then change them to the original names)
Next. The table creation (the ForAll) function in the above formula will return a table of all the records in Gallery6.
The bigger question is, are all of the controls referenced in the record schema (i.e. TextInput_EffortName, Combox_CF_RevTime, etc.) all in the Gallery6 template? If so, then you should be getting all of those in the table properly and the above formula should be creating a record for each item in the gallery.
You mention in your reply "collection" - the above (and suggested formula) does not use a collection. So what are you referring to?