Okay, im new so just learning smarthsheet and ive been through vlookup (that didnt seem to work) and now IF (which did what i wanted at first but then ultimately was disappointing.
This is the setup:
Here's what im trying to do:
I have an overall recommendations sheet that allows a client to pick and choose the subsequent year in which a recommendation will occur using check boxes:
I want my clients to be able to create individual year-to-year recommendation cost plan sheet by selecting what they want to do each year on this primary sheet. When they click a box, i want the first three columns to populate on the relevant subsequent sheets: Year 1, Year 2, Year 3 as a summary by year of what they picked on the primary
I kind of got it to work using the following IF statements
=IF({ClientDFP Checkbox1} = 1, {ClientDFP 1,4}, " ")
=IF({ClientDFP Checkbox1} = 1, {ClientDFP 2,4}, " ")
=IF({ClientDFP Checkbox1} = 1, {ClientDFP 3,4}, " ")
note: the 1,4 is just what i used to name the range column 1 row 4 and so on:
It worked!
Until i dragfilled it....because of course its still referencing the same cells as the first line. Do i have to do this individually for every cell because that seems like...activeX checkboxes in excel level of frustrating
Any advice for getting this to work? Also open to other functions that will do this better.