Jump to content

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

Recommended Posts

Posted (edited)

hello i am a beginner

how to make this in filemaker script.

i have a dropdown field for vouchers; ESC, NON-ESC, Public Voucher, and Private Voucher. and i have also a dropdown field for selection of grade/section. the ESC voucher is for grade 7-10, Private and Public Voucher is for grade 11-12.

what i want to happen is, if i selected the Grade 11 in the dropdown field for selection, the prompt or a dialog box will appear, it says that i must choose the appropriate voucher for the selected grade

Edited by Mark Gimpaya
Posted

Consider using a block of text on the layout, you can format it in red or something so it stands out, and then apply a hide condition to it:

Case( Grade <> 11 ; 1 ; not IsEmpty(Voucher) ; 1 ; 0 )

1 and 0 are shorthand for True and False. When either of those conditions are true, the alert text will be hidden.

This topic is 384 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.