I've been meaning to create a Time Tracker app and stumbled upon this great video from Randy Hayes: (25) PowerApps Time Tracker - YouTube
I was following his video every step of the way in a test environment and when I got to the part where I'm supposed to run the app and Check In, Lunch Out so that records are created in the SharePoint list I get this error message: "Network Error When Using Patch Function: Title field is mandatory."
My code is exactly like his in the video, but I can't seem to get it to work.
Patch(TimeTracker; Defaults(TimeTracker);
{
Title: glbUser;
ActivityType:ThisItem.display;
ActivityDateTime: Text(Now(); "yyyymmddhhmm"); ActivityDate: Now()
}
)