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.

Or in Calculations

Featured Replies

Curious why this won't work...

I'm simply looking to make a status field empty if a product field contains any of the 4 options.

If(lu_IDProduct=

"SVC.DeKD" or

"SVC.AsCP" or

"SVC.AsDL" or

"SVC.DLIn"

,

"" ,

"Back Ordered")


If (Iu_IDProduct = "SVC.DeKD" or 

Iu_IDProduct = "SVC.AsCP" or 

Iu_IDProduct = "SVC.AsDL" or 

Iu_IDProduct = "SVC.DLIn"; ""; "Back Ordered")





You have to redefine what it is equal to each time.



Alternatley you could do 



Let([

a = Iu_IDProduct];



Case(

a = "SVC.DeKD"; "";

a = "SVC.AsCP"; ""; 

a = "SVC.AsDL"; ""; 

a = "SVC.DLIn"; "";

"Back Ordered"))

The second way is how I would do it, incase I ever need to change things. Say when the product ID = SVC.DeKD I decided to make that "In Inventory"

I would change:

a = "SVC.DeKD"; "";

to

a = "SVC.DeKD"; "In Inventory";

If(lu_IDProduct= "SVC.DeKD" or

lu_IDProduct="SVC.AsCP" or

lu_IDProduct="SVC.AsDL" or

lu_IDProduct="SVC.DLIn"

,

"" ,

"Back Ordered")

Try:

Case (

IsEmpty ( FilterValues ( "SVC.DeKD

Edited by Guest

I don't understand what your saying there.

The way i see your calculation is

If it DOESN'T (the not comment) equal any of those, then make it equal "Back Ordered" and thats it?

And that will return nul value for everything else?

Man do I feel like a bonehead now.

I been doing that forever. But I didn't realize you could just throw a not( in there like that.

I don't understand what your saying there.

Yes, you do - you have explained it better than I ever could.

  • Author

Try:

Case (

IsEmpty ( FilterValues ( "SVC.DeKD

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.