Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

This topic is 4211 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

Ok, just wondering... If one would like to filter a portal with multiple "Strings" would one use a "If" or a "case" 

 

I am trying to Filter on 3 items and using the "Case" statement I'm only able to achieve 2....... Help !

 

Here's what I have so far

 

 

Case(
InspectionWork::Sample Complete="Complete";"";
InspectionWork::Sample Complete="Revising"
)
 
if I put a 3rd in like (On-Site) ...... it doesn't do its JOB !!
 
 
 
why only 2?
 
:sad:
Posted

You haven't put a result in your second case, so FM is seeing the third case as the second result.

 

 

Case(
InspectionWork::Sample Complete="Complete";"";
InspectionWork::Sample Complete="Revising"; "SomeString";
InspectionWork::Sample Complete="On-Site"; "SomeOtherString";
)
  • Like 1
Posted

Portal filtering is based on boolean results. From what I have read it seems as though you may be looking to show records with a particular status.

 

To show records that only display records with a Sample Complete of "Revising" or "On-Site" then try something like:

 

Sample Complete="Revising" OR Sample Complete="On-Site"

  • Like 1
Posted
Case(
InspectionWork::Sample Complete="Complete";1;
InspectionWork::Sample Complete="Revision"; 1 ;
InspectionWork::Sample Complete="On-Site"; 1
)

This topic is 4211 days old. Please don't post here. Open a new topic instead.

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

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