I have a table with several dimensions and expressions. I want to show only rows that have a specific expression under a threshold (in this case 0.5). I thought to change this expression in this way, to show values only below the threshold:
if(expression < 0.5, expression)
However, there is a problem. In this way, all the values over 0.5 are set as null, but they are still shown in table. If in the table I click on the checkbox to not show null values, also the values that as result of the expression have 0 are suppressed. But I want to show values with 0 as result of the expression, instead I want to suppress values over the threshold that I set.