September 20, 200718 yr Hi All, One question here for you guys. I have been able to limit users access/modification privileges fairly easily using FileMaker 8. I have something now that I have not run into before. I have a Privilege Set that I need to create that has multiple parameters for authentication before users under this Privilege Set can edit records. 1. Our "Market" field must not equal "New York 1" 2. Our "Status" field must equal "Leased" Now, here lies the problem. If I add just one of these parameters into the editing calculation for that Privilege Set it works fine. I can't use both, if I do nothing works. this is what I added to the editing calculation that didn't work: Market ≠ "New York 1" & Status = "leased" It will not work using the above statement. What can I do to make this work? I'm at a loss. Thanks in advance,
September 20, 200718 yr You have used the concatenate operator instead of the boolean AND operator. It should be: Market ≠ "New York 1" AND Status = "leased"
Create an account or sign in to comment