Skip 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.

multiple criteria calculation

Featured Replies

HI all

I am trying to write a summary of my company welding procedures but I hit a snag.

The criteria is as follows:

3/4" to less than 1 1/2" and 2t when t< 3/4"

3/4" to less than 1 1/2" and 2T when t> 3/4"

What I need to find is a calculation that would give the range beginning with 3/4" up to 1 1/2".

I tried the following

Case(

thickness =.750 or thickness <= 1.5 and weld < .750,2*thickness;

thickness = .750 or thickness <= 1.5 and weld > .750, 2* metalthickness)

little t is the weld metal deposit thickness

Larger T is the metal thickness.

At first glance that seems to work but further investigation prove that it did not wotk.

The problem is the equal to less than symbol.

Thanks for all your help

Lionel

The equal to and the less than symbol

Your calc is in essence asking for anything less than or equal to a thickness of 1.5 - try the following:

 Case(

thickness >= .750 AND thickness <= 1.5 and weld < .750,2*thickness;

thickness >= .750 AND thickness <= 1.5 and weld > .750, 2* metalthickness

Also, you realize a weld at .750 would not figure into this calculation? You are asking for <.750 and then >.750, by doing that you miss a value of .750.

Edited by Guest

  • Author

thanks

that exactly what I was trying to do

Create an account or sign in to comment

Important Information

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

Account

Navigation

Search

Search

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.