In tableau, i want to hide alternative rows -


in tableau, want hide alternative rows like: have 2 columns name id , name

id  name 101  x 102  y  103  z 104  

now want:

id  name 101  x 102   103  z 104   

i don't believe there way simply, in there no option dealing "alternative rows" in tableau.

given sample data provided though, create calculated field determine sequence of data displaying. example, table functions rank_unique or index sequentially assign integer data within partition. can use

[even_or_odd]: if [sequence_number] % 2 = 0 "even" else "odd" 

you use calculated field drive second go along lines of:

[display_value]: if [even_or_odd] = odd null else [value] 

Comments

Popular posts from this blog

angular - Ionic slides - dynamically add slides before and after -

minify - Minimizing css files -

Add a dynamic header in angular 2 http provider -