
Announcements
I have a status field in a SP list connected to Power App. What I'm trying to is that when the status column is changed, I would like to update the column named 'Changes' to literal "Status Changed" within the same row. I want to do the same for other columns with different fields, but the logic should be the same.
Hi @theBrianL ,
You could use this formula to update the Changed column:
If(
Column1Canged,
'Column1Changed',
If(
Column2Changed,
'Column2Changed',
If(
Column3Changed,
'Column3Changed'
)
)
)
Best Regards,
Bof