Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×
The Claris Museum: The Vault of FileMaker Antiquities at Claris Engage 2025! ×

This topic is 7171 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

Hi,

I came a cross a situation where by the particular field. Let say FIELD A.

FIELD A = NUMBER

User A = Access from range 0 to 10000

User B = Access from range 0 to 20000

User C = Unlimited.

How do I set for each users can see their own range that we preset for them ? Thanks.

Posted

For field A create script like:

If (Get(UserName)="A" and A<10000) Go To Field A

If (Get(UserName)="B" and A<20000) Go To Field B

If (Get(UserName)="C") Go To Field C

Join this script to field A in layout.

Posted

Thanks for your reply aaa!

What I want is that it validate single field only. All the above 3 users can access to the same field which is FIELD A. It is just that they can access a different value range. Like lower position staff can only view records from $0 to $10000.

Posted

Instead A in layout put Calculated field as

A_Calc=Case(

(Get(UserName)="A" and A<10000)),A,"",

(Get(UserName)="B" and A<20000)),A,"",

(Get(UserName)="C"),A,"")

Posted

From the above solution, we can control the value field base on what max value they can see.

Let say base on the max value set for them, we don't even want them to see the record at all. Not just blank out the field. Can it be done ? Ask.gif

Checkout my latest attachment.

Accsess.zip

This topic is 7171 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.