Skip to main content

Rollup to Count # of fields that say "Yes"

  • April 12, 2018
  • 1 reply
  • 26 views

Can I use a Rollup to count the # of fields in a column that say “Yes” on a linked table?

This topic has been closed for replies.

1 reply

Forum|alt.badge.img+5
  • Inspiring
  • April 12, 2018

If the field contains 'yes' or is blank, you can use a rollup with COUNTA(values) for the aggregation function.

If the field contains 'yes', 'no', 'maybe', and so on (that is, if you’re looking for yesses among a number of possible results), you’ll need to define a formula field with the formula

IF({Query Field]='Yes',1,0)

and then roll up the values of that field using SUM(values) as an aggregation function.