I tried to use this to solve a related issues where multiple fields must
have a minimum value.What should I do to resolve this?//if all fields
have their target value or greater in them make signature field
updatable//otherwise set it to readOnlyIf (ASTM1.rawValue >= 4 &
ASTM2.rawValue >= 5 & ASTM3.rawValue >= 6 & ASTM4.rawValue >= 3 &
ASTM5.rawValue >= 2 & ASTM6.rawValue >= 8 & ASTM9.rawValue >= 1 &
ASTM10.rawValue >= 3 & ASTM11.rawValue >= 1 & ASTM12.rawValue >= 0) {
this.access = "open";} els...