Hello!
I need to create formulas for two columns that number rows based on specific conditions. I have a helper column (Number).
First, I want to number rows that: Type is "Focus Group Volunteer" and Internal is "yes."
Second, I want to number rows that: Type is "Focus Group Volunteer", Internal is "no", and Patron Type is "Faculty", "Instructor", or "Visiting Scholar."
When I added my formulas, the second is skipping 3 for some reason. Any assistance is greatly appreciated!
Here is an example:
Formula for "Number: Internal" column:
=IF(Type@row = "Focus Group Volunteer", IFERROR(RANKEQ(Number@row, COLLECT(Number:Number, [Internal]:[Internal], OR(@cell = "Yes")), 1), ""))
Formula for "Number: External Faculty" column:
=IF([Internal]@row = "No", IF(Type@row = "Focus Group Volunteer", IFERROR(RANKEQ(Number@row, COLLECT(Number:Number, [Patron Type]:[Patron Type], OR(@cell = "Faculty", @cell = "Instructor", @cell = "Visiting Scholar")), 1), "")))