Formula to make it to check the checkbox in another sheet.

Marie_Louise22
edited 09/06/22 in Formulas and Functions

Hi all

Hope you can help me.

i'm trying to make a formular that can help me check off the checkbox in another sheet.

So its going to be somekind of formular that looks into another cell and if it is checked off it is going to checkoff in that sheet as well.

So 1. sheet is the Intake sheet. - The 2. sheet is the tasklist.

The orders come though to the intake sheet and then they are copied (automatic copy) into a tasklist. When the task is finished the status will be changed to done and it auto checkoff the "Done" checkbox column. So instead of manually going into the intake sheet and checking this one off too, I want it to recognize when the tasklist is checked off so will the task in the intake sheet.


right now i have been working with this:

=IFERROR(INDEX(COLLECT({Tasklist DK Range 3};{Tasklist DK Range 5};[project number]@row);1),"")

  • It doesn't work it comes back with #unparesable

Hope you can see the solution!

Best!

Answers

  • L_123
    L_123 ✭✭✭✭✭✭
    edited 09/06/22

    The easiest way is to have an identifying number (key) that has a unique number for every submission. Then you can compare against that number to find unique submissions. The easiest formula for doing so is a countif as such:

    =if(countif({submissionnumber},uniquenumber@row)>0,1,0)

    You can further this by changing it to a countifs to check if the complete column in the other sheet is checked as well.

  • @L_123

    it doesn't work im afried..

    Im not sure why, but im trying to let the intake-sheet know if the line (task) in the tasklist is checked done, so it automatically can check the checkbox done in the intake-sheet also..

    hope you can see the solution!

    thanks for trying! :-)

  • Jeff Reisman
    Jeff Reisman ✭✭✭✭✭✭

    Is there an order number or something that is unique to the row in the intake sheet, which you can match against the task list sheet? That's what you need to make this work. Would the Project Number column be able to match the two rows across the sheets? Then you could use INDEX/MATCH:

    =INDEX({Intake sheet checkbox column range}, MATCH([Project Number]@row, {Intake sheet project number column range}, 0))

    Regards,

    Jeff Reisman

    Link: Smartsheet Functions Help Pages Link: Smartsheet Formula Error Messages

    If my answer helped solve your issue, please mark it as accepted so that other users can find it later. Thanks!

  • Hi @Jeff Reisman

    Thanks for trying.. But it still gives me an #Unparseable error..

    Billy from smartsheet gave me this formula;

    =IFERROR(INDEX(COLLECT(What you want returned, What is the column matching the Project Number, [Project Number]@row), 1), "") 

    But it also dosn't work.. Can u see if there is anything missing? :)


    PS, Yes we have a unique project no. that brings the tasks together :)

  • Genevieve P.
    Genevieve P. Employee Admin

    Hi @Marie_Louise22

    It looks like you may have different language settings from the members providing answers.

    For each of their responses, make sure that you're swapping out their commas for your semi-colons. For example, Jeff's response:

    =INDEX({Intake sheet checkbox column range}, MATCH([Project Number]@row, {Intake sheet project number column range}, 0))

    should turn into:

    =INDEX({Intake sheet checkbox column range}; MATCH([Project Number]@row; {Intake sheet project number column range}; 0))

    Once you've tried the formulas again with the correct syntax for your language settings, if it still doesn't work, it would be useful to see screen captures showing how you wrote the formula in the cell (but please block out sensitive data).

    Cheers,

    Genevieve

  • Andrée Starå
    Andrée Starå ✭✭✭✭✭✭

    Hi @Marie_Louise22

    I hope you're well and safe!

    Can you maybe share some screenshots? (Delete/replace any confidential/sensitive information before sharing) That would make it easier to help.

    I hope that helps!

    Be safe, and have a fantastic week!

    Best,

    Andrée Starå | Workflow Consultant / CEO @ WORK BOLD

    Did my post(s) help or answer your question or solve your problem? Please support the Community by marking it Insightful/Vote Up, Awesome, or/and as the accepted answer. It will make it easier for others to find a solution or help to answer!

    SMARTSHEET EXPERT CONSULTANT & PARTNER

    Andrée Starå | Workflow Consultant / CEO @ WORK BOLD

    W: www.workbold.com | E:andree@workbold.com | P: +46 (0) - 72 - 510 99 35

    Feel free to contact me for help with Smartsheet, integrations, general workflow advice, or anything else.

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!