March 28, 200718 yr Hey! I'm trying to make a simple calculation, but i don't know how the IF works in filemaker, i'm still new at this. Basicly I have a Yes/No drop down field, and I wan't to save the current account user in another field whenever the Yes/No field is changed. Can anyone help me? Thanks
March 28, 200718 yr You can do this by creating an autoenter ('do not replace' unchecked)text field: let($trigger=YesNoField; get(accountname)) -Raz
March 28, 200718 yr No need to unecessarily use variables in calculations: let(trigger=YesNoField; get(accountname)) Or just: Evaluate( Get(accountName); YesNoField )
Create an account or sign in to comment