In my power apps form (which connects to a SP List), I have two datacards/fields I'm specifically working with:
1) Expected Complete Date (Date & Time Field)
2) Changed Complete Dates (Multiple Lines of text field)
What I'm looking to do is, when someone is editing an entry in the form and they change the 'Expected Complete Date', I'd like for it to append the originally stored date from (1) into (2). This way a record can be kept of every time the 'Expected Complete Date' has been changed - for this specific item.
So if the 'Expected Complete Date' is currently set to 12/5/2023, and someone uses the date picker to change it to 12/7/2023 and then saves/updates the form, I'd like for the 'Changed Complete Dates' to have:
12/7/2023
12/5/2023
If they change it again to 12/10/2023 and save/update the form, I'd like for the 'Changed Complete Dates' to now have:
12/10/2023
12/7/2023
12/5/2023
and so on.
I'm trying to find out if there's a way to first, determine if someone changes the date field, and then second, if they do change the date, how to compare that new date with *only* the top line entry of a multi-line text field, to see if it's different. If it is different, then append the newly selected date to the *top* of the multi-line text field.
If I'm thinking about this all wrong and if there's a better way, I'm all ears!
Thanks in advance!