Hello @lowercas3
In this case, you should use a “Single Line Text” instead of a number field because the user will enter values that are not specific numbers. However, in this case, you should transform the information entered by the user into a numbers array.
For example, assuming the “Single Line Text” is the fieldname123, the equation in the calculated field would be:
AVERAGE(fieldname123|r.replace(/[^\.\d\,]/g,'').split(','))
The field’s name with the |r
modifier allows accessing the raw field’s value.
Best regards.