Best Of
Re: Why is my =SUM formula calculating incorrectly?
I figured this out myself. Apparently one of these values (probably the middle column in the screenshot, based on the score sum) was a text value rather than a number. Affixing the VALUE function to each reference in the =SUM formula fixed the issue.
Zach_
Re: Save as Folder option does not change form path and history table path. Need to change manually
@kowal, Thanks for prompt answer.
Currently I am doing manually.
Best regards.
Re: Si presenti e faccia la conoscenza dei suoi colleghi!
Ciao! Uso Smarsheet da quasi un anno. Adoro come questa piattaforma si stia espandendo a livello internazionale! Essendo stato in Italia, non vedo l'ora di vedere come Smartsheet verrΓ implementato nel contesto dell'UE.
Andy_B
Re: Using Distinct Count based on other criteria
Try something like this:
=COUNT(DISTINCT(COLLECT({Assignment}, {Team}, @cell = "1", {Date}, @cell = DATE(2025, 03, 10))))
Paul Newcome
Re: Form with multiple logic conditions
Of course, Marcela! I like your signature so, in case you want to add the Romanian version it will be "BunΔ"
Have a great day!
Re: To the Incredible women in the Smartsheet Community
This is so beautiful @Protonsponge - thank you!
Alison C.
Re: COUNTIF and HAS calculations
Hey @Cayla Davis !
Couple things, I would change your COUNTIF to COUNTIFS to allow for multiple if statements, specifically allowing you to break up your "if 'NDC' is found on another sheet" and "has Under Review, Pending Development or Pending Production Release" statements.
Then for your HAS statement (this assumes the {Sabre Traveler Care Priorities Range 1} is a dropdown/ multidrop down column, if not use CONTAINS instead), you will have to specify in that range that the cell will contain one of your options. Due to there being multiple options to select from, you will need to add OR prior to your has (Under Review, Pending Development or Pending Production Release.
Your formula should look like:
=COUNTIFS({Sabre Traveler Care Priorities Range 5}, "NDC", {Sabre Traveler Care Priorities Range 1}, OR(HAS(@cell, [Primary Column]2), (HAS(@cell, [Primary Column]3), (HAS(@cell, [Primary Column]4)))
AKnight
Re: COUNTIF and HAS calculations
Do you want rows 1-3 in the NDC column of your matrix pictured to have all NDCs for all 3 statuses (therefore all counts would be the same)? Or should NDC1 have NDC in "Under Review", NDC2 is NDC is Pending Development, NDC3 is Pending Production Release? Does Range 5 include NDC alone or within the cell?
If Range 5 has cells with only NDC and the Range 1 is a single select dropdown, maybe try:
=COUNTIFS({Range 5},"NDC",{Range 1}, Primary@row) - then make it a column formula
If Range 5 includes other text and you want to count any cell that contains NDC, and/or Range 1 is a multi-select dropdown, you could use CONTAINS in one or both criteria:
=COUNTIFS(CONTAINS({Range 5},"NDC"),CONTAINS({Range 1},"Under Review")) (replace "Under Review" with the other statuses for rows 2-3.
Gwendolene Day
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.
