August 15, 200322 yr I need a script that replaces blank fields in a repeating field of 15 with a "-".Does anyone know how to do this ? Thanx
August 15, 200322 yr set YourRepeatingField [(-1), Case(isEmpty(GetRepetition(YourRepeatingField, 1))), "-"] set YourRepeatingField [(-2), Case(isEmpty(GetRepetition(YourRepeatingField, 2))), "-"] : : : set YourRepeatingField [(-15), Case(isEmpty(GetRepetition(YourRepeatingField, 15))), "-"] I would think... Regards, Ernst
August 15, 200322 yr how did you enter the formula? Copy it from my post? There is one closing bracket to much in there, so try: Case(isEmpty(GetRepetition(YourRepeatingField, 1 )), "-") etc. Ernst.
August 15, 200322 yr His spaceboy, by chance are you using a non US copy of FileMaker? If so, you need to use the semicolon ( instead of the comma (,) in the calculation. HTH Lee
Create an account or sign in to comment