Skip to main content
Solved

Simple roll-up not working

  • July 10, 2020
  • 2 replies
  • 29 views

Forum|alt.badge.img+6

I want to count the number of attendees on course. I’ve uplodad a pic of the formula. Any ideas what I’ve done wrong?

Best answer by AlliAlosa

You’ll want to use the aggregate function…

COUNTA(values)

SUM() is meant for numeric values :slightly_smiling_face: COUNTA() will count all non-empty values.

Hope this helps!

2 replies

Forum|alt.badge.img+19
  • Inspiring
  • Answer
  • July 10, 2020

You’ll want to use the aggregate function…

COUNTA(values)

SUM() is meant for numeric values :slightly_smiling_face: COUNTA() will count all non-empty values.

Hope this helps!


Forum|alt.badge.img+6
  • Author
  • Known Participant
  • July 10, 2020

Drrr! Of course. Many thanks. I knew it was an easy one.