8 Out of 10 Deployed Formula

Smartsheet Community:
I am Trying to Count The Number of Deployed Items Out of The Total Number of Installs. I am Referencing a Another Sheet.
Here is My Criteria: Status Has to Be Installed or Already Installed to Count it as Installed.
Expected Formula Results: 8 Out of 10 Deployed
Current Unsuccessful Formula:
=COUNTIFS({Status}, OR(@cell = "Installed", @cell = "Already Installed") + "Of" + COUNTIFS({Status}, OR(@cell = "Installed", @cell = "Already Installed")) + " Deployed")
Thanks in Advance
Best Answer
-
You could also use "is not equal to blank" to save yourself some typing in the future:
=COUNTIFS({Status}, OR(@cell = "Installed", @cell = "Already Installed")) + " Out Of " + COUNTIFS({Status}, @cell <> "") + " Deployed"
Answers
-
Move the very last closing parenthesis to immediately after the first "Already Installed". You closed out the OR statement but forgot to close out the COUNTIFS.
-
That Worked but I think My Formula is Not Arranged Correctly and Missing Something. I am Getting a Result of:
84 Out of 84 Formula Below:
=COUNTIFS({Status}, OR(@cell = "Installed", @cell = "Already Installed")) + " Out Of " + COUNTIFS({Status}, OR(@cell = "Installed", @cell = "Already Installed")) + " Deployed")
I Should Have 84 Out of 136
Here All The Statuses That Total 136: Not Installed, Install in Progress, Installed, Already Installed, Failed-Under Investigation, Investigate-Time.
84 Are Already Installed or Installed
Where Should I Include The Status The First CountIFS?
-
I Figured it Out which I am Sure you Already Knew The Answer LOL. See Formula Modified Formula Belwo:
=COUNTIFS({Status}, OR(@cell = "Installed", @cell = "Already Installed")) + " Out Of " + COUNTIFS({Status}, OR(@cell = "Installed", @cell = "Already Installed", @cell = "Not Installed", @cell = "Failed-Under Investigation", @cell = "Investigate-Tixr")) + " Deployed"
-
You could also use "is not equal to blank" to save yourself some typing in the future:
=COUNTIFS({Status}, OR(@cell = "Installed", @cell = "Already Installed")) + " Out Of " + COUNTIFS({Status}, @cell <> "") + " Deployed"
-
Ok, Thanks! I Appreciate it.
Help Article Resources
Categories
Check out the Formula Handbook template!