Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have straight table
with Dimension : Member
Expression1: Count(Distinct(Reference_SheetA))
Expression2: =Replace(count({<Result1={'Fail'}>}Distinct Reference_SheetA),'0', 'No Data')
Expression3: Expression1 + Expression2
so, i expression2 if there is no data it is showing 'No Data' . because of this expression3 is showing dashes. How can I replace the dashes with 'No Data' if there is no data after suming expression1 and expression2?
Thanks.
On the Properties tab of the straight table, change the Null symbol to No Data
Try
RangeSum(Expression1,Expression2)
Hi,
You can do some change in Expression2 like
if( count({<Result1={'Fail'}>}Distinct Reference_SheetA) = 0,'No Data',count({<Result1={'Fail'}>}Distinct Reference_SheetA))
Thanks & Regards
Thanks. it is showing 100%. but I need 'No Data'
sorry i entered wrog expression3 actually in the expression3 actually it is Expression2/Expression1
is it possible now
Thanks. But I need only for expression3. I don't want to replace in all columns if any case there is no data.
Thanks. Still showing same dashes.
Maybe try something like:
alt(Expression2/Expression1, 'No Data')
Hope this helps!
Try Like Below....
=IF(ISNUM(Column(2)/Column(1),Column(2)/Column(1),'NO DATA')
If(Column(2)='No Data','No Data',Column(2)/Column(1))