Welcome to the Smartsheet Forum Archives
The posts in this forum are no longer monitored for accuracy and their content may no longer be current. If there's a discussion here that interests you and you'd like to find (or create) a more current version, please Visit the Current Forums.
Formula for Counting Checkboxes in a row
Is there a way to count the number of checked boxes in a row with multiple columns?
Comments
-
Are the columns sequential?
You could try
=COUNTIF([Column1]23:[ColumnN]23,1)
for row 23 and replacing the column names with the first and last column names in the sheet.
You will get false positives on any column with the value 1 or "1"
There's no way to tell it to only count check boxes.
Craig
-
If needed, you could also add your countif statements together like this:
=COUNTIF([ColumnA]:[ColumnA], 1) + COUNTIF([ColumnJ]:[ColumnJ], 1) + COUNTIF([ColumnZ]:[ColumnZ])
-
I actually used this:
=SUM((COUNTIF([ColumnA]1:[ColumnD]1, 1))). I think it worked ok.
-
Thank you for the suggestions.
-
You shouldn't need the SUM() wrapper.
Craig
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.6K Get Help
- 403 Global Discussions
- 215 Industry Talk
- 455 Announcements
- 4.7K Ideas & Feature Requests
- 141 Brandfolder
- 136 Just for fun
- 56 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 296 Events
- 36 Webinars
- 7.3K Forum Archives