Tile view filter out rows with missing value or zero

Hello,

I am working on a workflow in which I want to create an interactive window using a bar chart and tile view.

My table looks like the following:

  1  2  3  4  5
A 0  2  0  0  3
B 1  0  3  0  2 
C 0  2  2  2  1

Column 5 in this example will be used for the bar chart. So decreasingly you would see the sequence ABC displayed. If I select bar B in this bar chart, I would like to automatically have the tile view showing:
B)
col 1 = 1
col 3 = 3

Ignoring the columns containing zeros. Bar C would show col 2, 3 and 4 and bar A would show only col 2. Is there anyone that knows how to do this?

Thanks,

Hi @dijksmd,

If you just want to display the corresponding row to the Bar Chart selection (where each bar represents a row) then a single Table View node would do the job for you having the “show selected rows only” option checked in the node’s dialog.
But if you want to filter the zero values in the Table View, then you can use widgets to apply a filter before displaying the table. (First filter the row using the widget then do the column filtering)

2 Likes

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.