Differentiating between Submitted by and Edited By

rommel
New Member

Use case: I have a form that can be initiated by a non-admin user (which should be marked as the Submitted By user), and that can be reviewed and saved by an admin user (which should be tagged as the Reviewed By)

Iโ€™m currently using the useremail() formula to capture the user that submits a form, but that means that when an admin user reviews a form and resubmits it, the Submitted By field changes to the last user to submit the form. Is it possible to capture the initial user that initiates a form, and the last user to review it in separate fields?

Thanks in advance

Solved Solved
0 2 150
1 ACCEPTED SOLUTION

Steve
Platinum 4
Platinum 4

For the Submitted By column:

  • Set Initial value to the expression:

      USEREMAIL()
    

For the Reviewed By column:

  • Set Initial value to:

    IFS(IN([_ROWNUMBER], table[_ROWNUMBER]), USERNAME())
    

    replacing table with the name of the table.

  • Enable Reset on edit?.

View solution in original post

2 REPLIES 2

Steve
Platinum 4
Platinum 4

For the Submitted By column:

  • Set Initial value to the expression:

      USEREMAIL()
    

For the Reviewed By column:

  • Set Initial value to:

    IFS(IN([_ROWNUMBER], table[_ROWNUMBER]), USERNAME())
    

    replacing table with the name of the table.

  • Enable Reset on edit?.

Excellent, thank you so much Steve!

Top Labels in this Space