Checkbox cross referencing person on another sheet

Linda F
Linda F ✭✭✭✭✭
edited 05/06/21 in Formulas and Functions

I am looking for a formula to cross check another sheet to check a box on my cumulative sheet.

Example, someone completes a required training on EM# 1 sheet then on the EM# 2 sheet I want that persons name to be checked from a list of other individuals. This is the formula I used,

=IF({Emergency Preparedness Employee Acknowledg Range 1}, HAS(@cell, "Doe, John"), 1, 0)

Any help would be appreciated.

Tags:

Best Answers

  • Heather Duff
    Heather Duff ✭✭✭✭✭✭
    Answer ✓

    Hi @Linda F

    One last try of the countif formula:

    =IF(COUNTIF({Emergency Preparedness Employee Acknowledg Range 3}, [Assign to]@row) > 0, 1, 0)


    This is assuming your "Assign To" column is listing the employee names you want to check for on the other sheet.

  • Heather Duff
    Heather Duff ✭✭✭✭✭✭
    Answer ✓

    @Linda F

    I was able to get it to work with a few tweaks:

    =IFERROR(IF(INDEX({Emergency Preparedness Employee Acknowledg Range 3}, MATCH([Assign to]@row, {Emergency Preparedness Employee Acknowledg Range 3}, 0)) <> "", 1, 0), 0)


    The iferror and ending ,0 are added because it was displaying #NO MATCH instead of unchecked.

Answers

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!