Hi
I need your assistance with this formula
I have a label text the get the Result from the SharePoint
I want to start the Label with Ready to Work Check Required, then go look at the last record for the employee and get the result from the Result Column
I put on the ONTEXT Code this formula, however it is getting the Data for Last Employee checked in. I want to data for my record only how I can do that.

With({_email: User().Email},
If(!LookUp('Back to Work Eligibility', StartsWith(Employee.Email,_email),true),
"Ready to Work Check Required",
With({_records: SortByColumns(Filter('Back to Work Eligibility',StartsWith(Employee.Email,_email)), "NextCheck_x002d_InDate", Descending)},
Text(
With({_utc: First(_records).Result},
If(!IsBlank(Last('Back to Work Eligibility').Result), Last('Back to Work Eligibility').Result)
)
)
)
)
)