I just noticed a bug that I need to fix. I have an ID text control that checks to see if you entered a 7 digit number. It works only if your 7 digit value does not start with a zero. For example 0000001 would be a number I would want to enter but that field validation sees only the 1. Is there a way to alter this code so it sees the starting zero and count from there?
If(
Value(Self.Text) < 1000000 || Value(Self.Text) > 9999999,
Reset(Self);
Notify("Reference ID Should be 7 digits. Drop any letters.")
)