Jump to content

Show/Hide rule type on different relational table


Yer Her

Recommended Posts

I have a problem and I'm hoping someone can help me with:

Backstory

I have a cross table with data set to dataset1.

dataset1 and dataset2 are connected through a relation.

dataset 2 is a table maps part numbers to component part.

I have a partial string search that filters based on an input field from user.

Now the problem I have or the objective is to be able to use either part number and component part number and be able to return a filter of parts associated with user input like a keyword search to their respective table

Link to comment
Share on other sites

To filter on partial user input strings I usually use a calculated column [my.filter] that returns a boolean expression (TRUE/FALSE). So it coul look like this:

 

case
when find([user.input], [part number]) > 0 or find([user.input], [component part number]) > 0 then TRUE
else FALSE 
end

 

Then you can use this column (as it returns TRUE or FALSE) to filter your data with the limit data by expression option.

 

Please share some sample dataset if you need further support

Link to comment
Share on other sites

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