Hello, I am trying to do two things: Set a variable to a SP list to filter the cert titles if the logged in user email is the same as email in the person column and then update the context of one of my textboxes based on the lookup column values in the SP list. I keep getting an error that says that I have an invalid number of arguments. How can I fix this? Thank you!
These are my two functions:
Set(myCertCollection,
If(User().Email = LookUp('Staff Certifications', Person.Email), Filter('Staff Certifications', Certification.Value && Status.Value = "Certification Active")),
"Title", Ascending
);
//Foundation-----------------------------
UpdateContext({uDS1: Concatenate(CountIf(LookUp(myCertCollection, Certification.Value,
'Practice Area'.Value = "Digital Services" && 'Practitioner Level'.Value = "1 - Foundation"),
" Certifications", Char(13), Char(13))});