Ask Your Question
3

What is the process of verifying if a value falls within a certain range of values in Spotfire?

asked 2021-04-16 11:00:00 +0000

scrum gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2022-03-22 08:00:00 +0000

lakamha gravatar image

To verify if a value falls within a certain range of values in Spotfire, you can use the AND function in a calculated column or a custom expression.

The AND function takes two or more logical expressions as arguments and returns TRUE if all the expressions are TRUE, and FALSE if any of the expressions are FALSE.

Here's an example of how you can use the AND function to verify if a value falls within a certain range of values:

  1. Create a new calculated column or a custom expression in your Spotfire table.

  2. Use the AND function to check if the value falls within the range of values:

  • For a calculated column, enter a formula like this: AND([Value] >= 10, [Value] <= 20)

  • For a custom expression, enter an expression like this: IF(AND(10 <= [Value], [Value] <= 20), "Yes", "No")

  1. The formula or expression will return TRUE or "Yes" if the value falls within the range of values (10 to 20 in this example), and FALSE or "No" if it does not.

You can then use this calculated column or custom expression to filter, group, or visualize your data based on the range of values.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2021-04-16 11:00:00 +0000

Seen: 1 times

Last updated: Mar 22 '22