Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
PFA.
When 'X' present in any row I need to show whole that row other rows no need to show.Please suggest
Thanks
Assuming X is in column 1, then use a condition on each expression like
If(Column(1) = 'X', <original expression for column2>)
If(Column(1) = 'X', <original expression for column3>)
...
Then ensure that suppress zeros and nulls is enabled
Assuming X is in column 1, then use a condition on each expression like
If(Column(1) = 'X', <original expression for column2>)
If(Column(1) = 'X', <original expression for column3>)
...
Then ensure that suppress zeros and nulls is enabled
Thanks Jonathan.
Its working