Best Of
Re: How would I set up filters or a formula to pull in data from two columns and numbers in between?
You just want a filter for the view, right? You can have multiple conditions in a filtered view.
Filtering for Tstart<=X AND Tend>=X seems like it should do the job for you for any value of X, they would just need to change the value of X for the week they want.
Jgorsich
Re: Challenges with combining SUMIFS and COUNTIFS
Hello, I was able to get both formulas to work after testing out the =SUM([Completed Count]:[Completed Count]). Thank you for your input.
Re: To the Incredible women in the Smartsheet Community
Dear @Protonsponge & the Smartsheet Community
What a beautiful message to read! Thank you for these heartfelt words celebrating women in our community and worldwide.
It's so wonderful to see appreciation expressed not just on International Women's Day, but as an everyday acknowledgment. The recognition of women's contributions, strength, and leadership makes our Smartsheet Community even stronger.
I'm grateful to be part of a community where members like you take the time to express such genuine appreciation and respect. These thoughtful messages remind us all of the wonderful people behind the screens and spreadsheets!
Here's to continuing to build this supportive, inspiring community together every day of the year.
Re: COUNTIFS - cross referencing a sheet
Hey @aneekahTAL
The syntax for your COUNTIFS is not correct. COUNTIFS have the syntax of =COUNTIFS({Range 1}, criteria 1, {Range 2}, criteria, {Range 3 etc}, criteria 3}. A COUNTIFS can also be used with only one Range-criteria pair.
=COUNTIFS({TPP Rollout - Hubs Range 2}; "A"; {State 9}; "Complete"; {TPP Rollout - Hubs Range 1}; "FY25")
Does this work for you?
Kelly
Kelly Moore
Re: Percentage Complete Parent/Child
@Georgie ,
I figured it out!
I used this formula
=IFERROR(AVG(CHILDREN()),
IF(Status@row = "Complete", "1",
IF(Status@row = "In Progress", ".25",
IF(Status@row = "Blocked", ".5",
IF(Status@row = "Not Started", "0",
"")))))
Then I formatted the column with Percentage
Re: Automation no longer working
@kowal Yes, I've tested it several times. I just opened a ticket with support.this has not been resolved
ljkeefe1
Re: Partial Formula Working
The third IF condition ([Month of Contract]@row > [Contract Length]@row + 12) is never reached because the second IF already catches all cases where [Month of Contract]@row > [Contract Length]@row.
For example:
If the Contract Length is 12 months and the Month of Contract is 15, it meets the condition [Month of Contract]@row > [Contract Length]@row but does not meet [Month of Contract]@row > [Contract Length]@row + 12. The formula should apply the "After Initial Contract %" rate in this case.
However, if the Month of Contract is 25, it does meet both conditions ([Month of Contract]@row > [Contract Length]@row and [Month of Contract]@row > [Contract Length]@row + 12). The formula should apply the "12+ Month Contract %" rate in this case.
So, bring the IF([Month of Contract]@row > [Contract Length]@row + 12, before, and [Month of Contract]@row > [Contract Length]@row will be treated as the "else" case if not.
=IF([Month of Contract]@row <= [Contract Length]@row,
[Contract Amount]@row * [Initial Contract %]@row,
IF([Month of Contract]@row > [Contract Length]@row + 12,
[Contract Amount]@row * [12+ Month Contract %]@row,
[Contract Amount]@row * [After Initial Contract %]@row
)
)
In the Corrected Formula:
- If
[Month of Contract]@row <= [Contract Length]@row→ Apply Initial Contract %. - Else, if
[Month of Contract]@row > [Contract Length]@row + 12→ Apply 12+ Month Contract %.- This condition will be reached if the contract month is more than 12 months past the contract length.
- Else → Apply After Initial Contract %.
- This part catches all cases greater than
[Contract Length]@rowbut less than[Contract Length]@row + 12.
- This part catches all cases greater than
Re: To the Incredible women in the Smartsheet Community
I love this so much 💜
Re: Happy 10th Anniversary Community + Giveaway!
Web-based Excel but for project management
NeilKY


