Are you able to use if statements in the Input Mask column? I have a survey that I have two acceptable formats for a field, either 12 or 13 characters. I want to write something like this to change the mask based of the length of the string:
if(string-length(.) = 12, xxxxxx-xxxxxx, xxxxxxxx-xxxxxx)
However, I discovered that the text written above becomes the mask. Is there anyway to have two accepted mask?