Hi all,
I am trying to use the formula tool to pick the minimum value over two fields.
E.G [Field 1 =3] [Field 2 = 7] = 3
Any help how I could do this?
Regards
Solved! Go to Solution.
Not sure how I missed that (facepalm), I am now however getting a "Invalid type in operator <." error 😞
This is a numeric function.
You might need to do the ToNumber Conversion if your fields are string types.
Min(ToNumber(Field1), ToNumber(Field2))
Cheers,
yea had to wrong data type set on one of the fields. now resolved thank you