If(
Len(Self.Value)> 8,
"Error",
"None"
)
If(
IsMatch(Self.Value, "^$|^.{9,}$"),
"Error",
"None"
)
If(
Or(Len(Self.Value)> 8 , IsBlank(Self.Value)),
"Error",
"None"
)
If(
Or(
IsBlank(Self.Value),
Len(Self.Value) < 8
),
"Error",
"None"
)