Hi @Brian_S ,
Apply the below to the OnSelect property of a Button control, you would need to use a Patch function to achieve this.
I would caveat that given you're new to Power Apps, I would strongly recommend doing some reading/watching some tutorials on the Patch and For All functions, as well as on Collections, just to understand what is going on here (anything from Shane Young and Reza Dorrani on YouTube if you have not already).
ClearCollect(//get dates into a collection
ColDates,
{Dates: Your_DatePicker1.SelectedDate},
{Dates: Your_DatePicker2.SelectedDate},
{Dates: Your_DatePicker3.SelectedDate}
);
Patch(
YOUR_DATA,
ForAll( //for all dates in the collection, do:
ColDates,
{
projecttype: DataCardValue1.Text,
category: DataCardValue2.Text,
positions: DataCardValue3.Text,
billrate: Value(DataCardValue4.Text), //assumes your bill rate column is a Number data type
projectdate: ColDates[@Dates]
}
)
);
------------------------------------------------------------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved.
If you like my response, please give it a Thumbs Up.