While I had the wrong formula, as @timl was nice enough to take time to educate me on, implementing timl's fix exposed a second issue: The headers in my collection had not established themselves as headers at this point in the program. So, on Page1 I changed this code:
Collect(
colCovidTeamSavedItems,
{
StartTime: varStartTime, StreetAddress: {Value: DataCardValue48.Text}, StreetAddress2:DataCardValue49.Text, City:DataCardValue50.Text, State:DataCardValue2.Text, Zip:DataCardValue3.Text, DoorAnswer: {Value: DataCardValue51.Selected.Value}
}
);
...to this code:
Collect(
colCovidTeamSavedItems,
{
StartTime: varStartTime, StreetAddress: {Value: DataCardValue48.Text}, StreetAddress2:DataCardValue49.Text, City:DataCardValue50.Text, State:DataCardValue2.Text, Zip:DataCardValue3.Text, DoorAnswer: {Value: DataCardValue51.Selected.Value}, LanguageIssue:"", WillingToSpeak:"", CovidKnowledge:"", CurrentlyPositive:"", CurrentCOVIDIsolateSafely:"", PreviousCOVIDTestPositive:"", PreviousCOVIDIsolateSafely:"", TwoWeekCOVIDExposure:"", NumExposed:"", QuarantineSafely:"", CurrentConcernsOther:"", IfSickCanIsolate:"", PreExistingCondition:"", HasPCP:"", NumPeoplePreExistingCondition:"", NumAdults:"", NumChildren:"", HelpGrowKnowledge:"", CovidKnowledgeAfterVisit:"", HelpGrowKnowledgeOfResources:"", WillUseResourcesDescribed:"", MinutesSpent:"", CCFoodSecurity: false, CCRent: false, CCHealth: false, CCMeds: false, CCTransportation: false, CCNoConcerns: false, LSSpanish: false, LSCreole: false, LSMaam: false, LSOtherMayan: false, LSOtherLanguage: false, LSEnglish: false, RaceAfricanAmerican: false, RaceWhite: false, RaceNativeAmerican: false, RaceAsian: false, RaceNativeHawaiian: false, RaceOtherPacificIslander: false, RaceDecline: false, EthnicityHispanic: false, EthnicityNotHiospanic: false, EthnicityDecline: false, MatsMasks: false, MatsGloves: false, MatsEdMats: false, MatsFarmPackage: false, MatsNone: false, HPIntroductions: false, HPCOVID19Symptoms: false, HPCOVID19Transmission: false, HPCOVID19InImmokalee: false, HPPrevention: false, HPTesting: false, HPInHouseTestsPositive: false, HPResources: false
}
);
Which introduces all of my headers in my collection at once at the very beginning.
I just realized that this is much like initializing a variable.