Title
Look at another field
Post
I have a scripted button that will enter data from field 1 into field 2 if field 2 is empty.
If field 2 contains data from field 1 and I press the button, a message shows, delete data from field 2, yes, no.
I have a second button that will enter data from field 3 into field 2. If button 2 is clicked the same will happen as with button 1.
I want to look to see if field 2 holds data from field 1 0r 3 so I can offer another choice.
somthing similiar to this,
If IsEmpty (field1)
Set Field (field2;field1)
Else
If Not IsEmpty (field2)
Show message: choice 1 = delete data, choice 2 = cancel
Else
If,
HERE IS WHERE I GET LOST! SOMTHING LIKE,
else if field 2 is equal to field 3, show message: choice 1 will replace data in field 2 with data from field 1, choice 2 will cancel
windows 7
filmaker 10
Am I not clear as to what I want to do? Is this possible?