Jump to content
View in the app

A better way to browse. Learn more.

FMForums.com

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Tricky Layout Help Sorry its Long

Featured Replies

Im trying to get a forumal calculated but the problem is that if a student dosent have a SAT score then I must use an ACT score, Also if the student doesn't have Letter Grade point average I must you an hundred point system.

I want for people who use the database to get a popup or something that asks what does the student have; like if the user is at the field for SAT score before they get to fill the field in, I want something that asks did they have an SAT score and if yes they can fill in the field, if no the field can become grey out and there instructed to fill out the ACT Field.) I will probably need to do this for many field. :) is it possible?

Here's two ways, not made to be efficient, but easier to understand.

First, a calculation, no need to have the user choose:

If ( IsEmpty ( SAT_Score ) ;

If ( IsEmpty ( ACT_Score ) ; // no SAT score see if there's an ACT score

"No Score" ; // no SAT or ACT score

ACT_Score // ACT score only, display

) ;

SAT_Score // SAT score present, display (even if an ACT is present)

)

Assign the popup to a field "ScoreType". Make a calculation with this:

If ( ScoreType = "SAT" ;

SAT_Score ;

If ( ScoreType = "ACT" ;

ACT_Score ;

"Invalid Popup Value"

)

)

  • Author

Thank you.

Create an account or sign in to comment

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.