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.

Featured Replies

Sorry, but how can a cost be <25 and >50 at the same time? wink.gif

Give this a try.

Case(

Cost <= 25, Cost * 2,

Cost <= 50, Cost + 30

Cost <= 100, Cost + 50

Cost <= 200, Cost + 75,

100)

The last value is a default, if none of the tests succeed. The Case statement performs the tests in order, so an "and" criteria is not needed.

-bd (engineering major)

  • Newbies

I need some help with a calculation. I have six price points that I need to have a set mark-up applied to. I need to look at the entry in the cost field and then apply the apropriate mark-up. For example, if an item costs from $0 to $25, then it needs to X2, if it is between 26 and 50, it needs to add $30.00 ad so on.

Problem is, I was a communciation major and english minor and do not understand the whole if..then math logic. Any help would be appreciated.

John

Try a Case statement calculated field:

Case(Cost >= 25, Cost + 25,

Cost < 25 and Cost > 50, Cost + 30, Default value)

You can run this as many times as needs to cover the different parameters. The default value would be some value that would be used if all of the cases failed.

HTH

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.