Your expression to decide if the view D should be shown is not evaluated on a row level, so Thisrow shouldn’t work afaik.
I’m not sure but I think your best bet would be to make that D view based on a Slice where the data available is just the rows where [IsEHPAD] is true.
Also, you don’t need to compare that column with anything, it’s true by it’s own
Being not evaluated in the context of a row, does not prevent you from basing your Show if constraint on a particular value of a column in a table row. You just have to write the corresponding expression to extract this precise value.
Do this correctly and your view should disappear as expected.
Yes, “isEHPAD” has as many values as there are rows in your table. Your expression doesn’t tell which [isEHPAD] you are looking for, and this is the problem.
So yes, you have to rephrase it as you’ve correctly written, “[isEHPAD] in row 8 is yes?”
@GS1 I’m glad it worked even with a workaround. I just needed to understand your requirement so you won’t have to guess the formula.
Anyway, I’ve made this attempt to implement your requirement. The conclusion is, yes you can hide and show views based on column values, but not a Details view in a Dashboard.