Hi @freedumz,
Could you please share a bit more about your scenario?
Further, could you please share a screenshot about your app's configuration?
For your first question, do you want to copy an item existed within your Gallery and create a new item (only some modifications on date) with the copied data?
I have created a SP list on my side, the data structure as below:
I have made a test on my side (generate an app from my SP List), please take a try with the following workaround:


- Set the OnVisible property of the first screen of your app to following formula:
Set(IsCopy,false)
- Add a Copy Icon button within the Gallery control (mentioned as above screenshot), set the OnSelect property of the Copy Icon to following formula:
Set(IsCopy,true);
NewForm(EditForm1);
Navigate(EditScreen1,ScreenTransition.Fade,{CopiedItem:ThisItem})
- Within the Edit screen, unlock the Data card controls (except the Data card that you want to make some modifications. e.g. the Date field Data card) within the Edit form, Set the Default property of the Data card control to following formula:
If(IsCopy=true,CopiedItem.PropertyName,ThisItem.PropertyName)
e.g. If you want to retain the value within the Title Data card as that within the copied item, please unlock the Title Data card, set the Default property of this Data card to following:
If(IsCopy=true,CopiedItem.Title,ThisItem.Title)
Set the OnSelect property of the "Submit button" control to following formula:
SubmitForm(EditForm1);Set(IsCopy,false)
The GIF image as below:
For your second question, do you want to color the selected item within your Gallery control? I agree with @Drrickryp's thought almost. I have made a test, please take a try with the following workaround:
Set the TemplateFill property of the Gallery control to following formula:
If(ThisItem.IsSelected,RGBA(246, 88, 16, 1),RGBA(0, 0, 0, 0))
The GIF image as below:
Best regards,
Kris