Sign in to join the conversation:
Hi there Smartsheet Guru's!
Im trying to figure out the best way to automate a progress bar, based of 9 columns that all have check boxes. Screenshot shown:
Hi @Paul Newcome - I'm also doing something similar, except I'm referencing a different sheet. This is the formula that keeps getting #UNPARSEABLE
=IF(COUNTIFS(CHILDREN({5060 Milestones Done}@cell), 1) < 1, "Empty", IF(COUNTIFS(CHILDREN({5060 Milestones Done}@cell), 1) < 4, "Quarter", IF(COUNTIFS(CHILDREN({5060 Milestones Done}@cell), 1) < 8, "Half", IF(COUNTIFS(CHILDREN({5060 Milestones Done}@cell), 1) < 11, "Three Quarter", IF(COUNTIFS(CHILDREN({5060 Milestones Done}@cell), 1) = 13, "Full")))))
I tried replacing the 1 within the COUNTIFS with true and that unfortunately didn't work either. I've also tried using @row rather than @cell and that didn't work either.
@crokicki your COUNTIFS syntax is off for each of them. You also cannot use hierarchy based functions with cross sheet references. You would need a helper column on the source sheet that brings the parent row data down onto every child row and then include that in the COUNTIFS.
I would also suggest making it more dynamic so that it doesn't matter how many children are there, it will calculate based on the percentage of children that are checked.
COUNTIFS({Helper Column}, @cell = "5060", {Checkbox Column}, @cell = 1) / COUNTIFS({Helper Column}, @cell = "5060")
The above would give you
0 = 0 = "Empty"
0.25 = 25% = "Quarter"
0.50 = 50% = "Half"
0.75 = 75% = "Three Quarter"
1 = 100% = "Full"
My spreadsheet has 4 columns are updated each Month with Stable, Improving, Developing, and Negative. Negative is the highest priortiy, then Developing, then Improving. Please assist with a IF statement, that would look at all 4 columns an update the cell with the highest priority word.example 3 stables and a developing…
I have a Control Center program that creates a project management sheet for each new project. In the Intake Sheet we have a contact column "Project Manager" where Control Center pre-populates the project manager's contact name in every row, of the project, where the project manager oversees the task associated with that…
I am looking for a formula that will look at this table and pull the hours per week based on 2 criteria – group and week. Right now, I have the tables separated so that I can use a vlookup formula. But that means I have to have 5 different formulas, 1 for each group. =IFERROR(VLOOKUP(ROUND(($[First Receive]@row - $[Week 1…