I have 5 check boxes, Monday through Friday.
I have a Formula field I want to use to show how many of those check boxes are checked.
I have tried variations of formulas that I believe should work, but I keep getting syntax errors.
IF(${Attendance.Monday}=='true',1,0)+IF(${Attendance.Tuesday}=='true',1,0)+IF(${Attendance.Wednesday}=='true',1,0)+IF(${Attendance.Thursday}=='true',1,0)+IF(${Attendance.Friday}=='true',1,0)
IF(${Attendance.Monday},1,0)+IF(${Attendance.Tuesday},1,0)+IF(${Attendance.Wednesday},1,0)+IF(${Attendance.Thursday},1,0)+IF(${Attendance.Friday},1,0)
Is this the correct way to go about this or is there another method?