maverick
maverick

Reputation: 139

Select multiple ranges on filter slider - Tableau

Is there a way to implement multiple range selections on tableau filter sliders. Refer to the picture below

enter image description here

In this case if i need to select values falling in range between 1 and 5 and again between 10 and 15, how can i achieve that.

Upvotes: 2

Views: 5155

Answers (1)

Bernardo
Bernardo

Reputation: 3318

You can do it with Parameters. Create 4 Integer parameters then create a calculated field to filter.

Using Superstore data I created the following filter calc and selected True.

(sum([Sales]) > [range 1 start]
and 
sum([Sales]) < [range 1 end])
or
(sum([Sales]) > [range 2 start]
and 
SUM([Sales]) < [range 2 end])

enter image description here

Upvotes: 4

Related Questions