Hi @Anonymous ,
1)Yes, Timer control's OnTimeEnd can be used to set variable.
2)Your three actions are step by step. You do not need to use Concurrent function. Concurrent function is used to act two actions at the same time. Just use ";", which means that act actions in order.
3)The right syntax of Patch should be:
Patch(tablename, Defaults( tablename),{....}) //create a new item
Patch(tablename,one spefic item, {....}) //modify an existing item, please replace one spefic item with the item that you want to modify
Here's a doc about Patch for your reference:
https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/functions/function-patch
To sum up, try this formula:
Set(_flag1,Status.Text);
If(_flag1<>_flag,
Patch(Testpowerapp,Defaults(Testpowerapp),
{
Title: Office365Users.MyProfile().DisplayName,
DT: Now() + .0835,
Status: Status.Text
}
) ;
Set(_flag,_flag1)