List users based on criteria

Hi Smartsheet Community,

I need to generate a list of names based on multiple criterias, can you kindly point me in the direction on how to accomplish this?

  1. How do I get a list of members in the Mgmt or Ops Team?
  2. How do I get a list of Managers with over 10+ years of experience?

Appreciate your input!

Thanks in advance.

Tags:

Best Answers

  • Matt Lynn-PCG
    Matt Lynn-PCG ✭✭✭✭✭✭
    Answer ✓
    1. Try this:
      1. =JOIN(COLLECT([Member Name]:[Member Name], Dept:Dept, "Ops"), ",")
      2. Replace "Dept:Dept" with whatever that column is.
    2. Try this:
      1. =JOIN(COLLECT([Member Name]:[Member Name], Dept:Dept, "Management", [Years of Experience]:[Years of Experience], >=10), ",")
      2. Replace "Dept:Dept" with whatever that column is.

    @PerDeSi

    Certified Platinum Partner

    2023 Partner of the Year

    PrimeConsulting.com

  • Paul Newcome
    Paul Newcome ✭✭✭✭✭✭
    Answer ✓

    You will need to insert a text/number column (called "Number" in this example) and then manually enter the numbers starting with one and going as far down as the last entry in your Member Name column.

    1

    2

    3

    4

    5

    etc.

    Then you would change the JOIN function to an INDEX function, the delimiter to Number@row and wrap it in an IFERROR. The COLLECT portion won't change.

    =IFERROR(INDEX(COLLECT(…………….), Number@row), "")

Answers

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!