Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I have Dim1, Dim2, Dim3,Dim4, Expr1, Expr2, Expr3, Expr4,Expr5,Expr6,Expr7,Expr8.
I want to filter rows when Expr2 AND EXPR4 and EXPR6 is blank. I have set analysis in all these expressions.
I know I have to write isnull condition in all 8 expressions, but not sure how I formulate that particular expression.
Kindly help
Thanks
I am not sure, What are you trying to achieve here. But try a luck
Exp2 = {"Exp2=IsNull(Exp2)"}
Hi,
Kindly share sample data. Then only we can understand what u asking.
Thanks
if(len(Exp2)=0,0,Exp2) and suppress the zero value from the presentation tab . similarly follow the same approach for other expression as well
I want to disable row 2 and row 4. I am ONLY concerned about Expression 2, 4 and 6 and not any other Expression
I want to disable row 2 and row 4. I am ONLY concerned about Expression 2, 4 and 6 and not any other Expression
I want to disable row 2 and row 4. I am ONLY concerned about Expression 2, 4 and 6 and not any other Expression
Hi, maybe adding a condition to any other expression?:
If(IsNull([Expr2Name]) and/or IsNull([Expr4Name]) and/or IsNull([Expr6Name]), Null(),
Expression1 //For expressions 1,3,5,7,8
)
and: true for row 4
or: true for rows 2 and 4
Hi Priya,
Does your data contains Null values as 'null'? If so we cant use IsNull Expression because'null' is a text. We need to use calculated function where you need to give condition for each column. Or if your data contains blank fields you can do the following. Go to the Table properties tab and select Presentation. There select each field where you want to omit the blank fields and check the 'Omit Rows' box. Do that for all the remaining fields. I hope this helps you.