So I have a table where I want to hid any rows that have no value for a specific expression regardless if there is any data in the other expression fields. See below for example of my table. What I am trying to do is write a calculated dimension for "RVP" that would allow me to suppress the null values. I am using the following but get and Error in Calculated Dimension.
if( (COGS/REVENUE) =0, NULL(), [RVP])
I would then supress the null values ideally eliminating RVPs "G" and "H" from the table.