I have a radio button in a collection that has three options, Found Correct, Corrected, and Other. I would like to total outside of the collection how many of each there were. Can I do that?
This doesn't work:
I have a radio button in a collection that has three options, Found Correct, Corrected, and Other. I would like to total outside of the collection how many of each there were. Can I do that?
This doesn't work:
Almost had it
=COUNTIF(Collection.Radio_Button,"choice 1")
Don't use row() unless you are putting the formula on a field inside the collection. That means "In the same row" so if you have another variable inside the collection, it will use values from the same row. Since your fields are outside of the collection, row() doesn't have any context. Instead, you just want the count anytime the value is set to "choice 1".