Collect an column entry when data is entered by a form

A&W Admin
A&W Admin ✭✭✭✭

Hi,

I'm still tearing my hair out over this issue, and I'm hoping someone can help me.

In our set up that is run through control centre, we have specific information that is entered onto a sheet via a form. I need to link the information that is entered into that form back to the metadata for each project. The issue I'm running into is that I enter either an INDEX or IF formula, when I then use the form to input the data the form data enters into the row below the one that is referenced in the formula.

The screenshot of the sheet is shown below. We have a summary section and I want to collect the "Location Consultant Fee". When the form is submitted, it automatically adds a checkbox into the "check" column, so I wanted to use that as the reference for which row to return. Note that only 1 form is ever submitted into this sheet, so we don't need to worry about multiple entries. The screen shot also shows the formula I used. I also tried the following IF formula, which ultimately has the same result:

=IF(Check20 = 1, [Fixturing Period (Days)]20, IF(Check19 = 1, [Fixturing Period (Days)]19, IF(Check18 = 1, [Fixturing Period (Days)]18, IF(Check17 = 1, [Fixturing Period (Days)]17, IF(Check16 = 1, [Fixturing Period (Days)]16, IF(Check15 = 1, [Fixturing Period (Days)]15, IF(Check14 = 1, [Fixturing Period (Days)]14, IF(Check13 = 1, [Fixturing Period (Days)]13, IF(Check12 = 1, [Fixturing Period (Days)]12, "")))))))))

image.png

Does anyone have a suggestion on how I can report the Location Consultant Fee back to the metadata for this project. I'm willing to rework the sheet if the current set up is not ideal.

Best Answer

  • SSFeatures
    SSFeatures ✭✭✭✭✭✭
    Answer βœ“

    Hi @A&W Admin, I think you can accomplish this by using an INDEX + MATCH formula.

    For example:

    =INDEX([Location Consultant Fees]:[Location Consultant Fees], MATCH(true, Check:Check, 0))
    

    This will return you the value in Location Consultant Fees for the row where Check is equal to true. In other words, it'll give you the location consultant fee for the row with the check box clicked.

    Screenshot from 2025-05-22 14-14-42.png

    Notice how in my screenshot, my summary value is 100, because it's grabbing the value from the row where the checkbox is clicked.

    Hope this helps!

    Nathan Braun (Founder of SSFeatures) (nathan@ssfeatures.com) (LinkedIn)

    SSFeatures makes Smartsheet way easier to use and it saves you hours of work every week. It adds essential features into Smartsheet to save you time. For example: β€” Auto Sorting β€” Sorting with Filters β€” Report PDF Generation β€” Copy and Paste Conditional Formats β€” Copy and Paste Automation Workflows β€” Column Manager β€” and so many more.

Answers

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!