Hi, I am getting an error "the field resulted in a string but it is numeric". Alteryx is suggesting to add the ToNumber formula.
My data type is "int64", so I don't know what I am doing wrong.
Can someone let me know how to apply the ToNumber formula to the statements below? Any help will be much appreciated!
Virtual column
If IsNull([Actual # of Virtual Attendees]) THEN [Virtual est attendees] ELSE [Actual # of Virtual Attendees] ENDIF
In-Person column
If IsNull([Actual # of In-person Attendees]) THEN [Request Expected Attendees] ELSE [Actual # of In-person Attendees] ENDIF
Total Attendance
[Attendance - InPerson]+[Attendance - Virtual]