Hi,
I have a SharePoint list with two columns:
- CertifiedUser (Person type)
- CertifiedDate (Date type)
I have a screen with a submit button and two labels.
When Submit is clicked:
- Patch command adds CertifiedUser and CertifiedDate to the SP list.
- Label1 always displays 'You were certified on '.
- Label2 should display the CertifiedDate, but it is blank.
If I restart the application, Label2 displays CertifiedDate correctly.
Text property of second label is:
LookUp(Certifications,CertifiedUser.Email=User().Email, CertifiedDate)
What am I missing? How do I display CertifiedDate after Submit is clicked?
Thanks