Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I have defined Dimension Group as below:
IF(Field1=1 ,IF(Field2=1,'A'),
IF(Field1=2,IF(Field3=1,'B'),
IF(Field1=3,IF(Field4=2,'C')));
Field2 has other values.
Now, I would like to ignore Field2 filter on row 'B' (Only). Is that possible?
Thanks,
Greeshma
Your question is difficult to understand. Can you please provide some more information (possibly with sample data)?
Hi,
please elaborate on your question.
I am using a table to display different dimensions. However, Table only allows single dimension. Hence, I have added all the necessary dimensions through if..else.
Below is the expression for the table dimension where there are 3 dimensions A, B and C. Each of them are calculated based on different conditional data.
IF(Field1=1 ,IF(Field2=1,'D1'),
IF(Field1=2,IF(Field3=1,'D2'),
IF(Field1=3,IF(Field4=2,'D3')));
Now, I would like D1 to ignore any filters on Field3. However this should not impact D1 or D3. My question really is how to limit the scope of data within if conditions?
Hope this helps.