Mark Gimpaya Posted November 6, 2024 Posted November 6, 2024 (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 November 6, 2024 by Mark Gimpaya
Fitch Posted November 8, 2024 Posted November 8, 2024 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.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now