Hi,
I am trying to figure out how I can create a connection between 3 tables that are not using REF type. I have Peer nomination view where users can nominate their peer. once nominated, the user that got nominated will go to a view where he/she can approve ( Need to approve before he/she can rate) once approved, the rater will have a page where there is a action button that uses LINKTOFORM to go to the Peer Evaluation form to submit. Things I need to do:
- Need to hide the evaluation button after the rater submits a evaluation. Currently the button will stay appear since my formula only makes it to show to the accepted peer raters. below is my expression:
OR(
AND([Email Address of Employee (Peer Rater 1)] = useremail(), [Status for Peer Rater 1] = “Accepted”),
AND([Email Address of Employee (Peer Rater 2)] = useremail(), [Status for Peer Rater 2] = “Accepted”),
AND([Email Address of Employee (Peer Rater 3)] = useremail(), [Status for Peer Rater 3] = “Accepted”),
AND([Email Address of Employee (Peer Rater 4)] = useremail(), [Status for Peer Rater 4] = “Accepted”)
)
-
I need a view for the rater of all finished rates that they have done.
-
I need to show a separate table for the rater to see all of the achievements of the ratee, but that is on another table.
Thanks for helping
