Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have straight table having 2 dimensions and 1 metrics.I am showing the total value as well.I want the total value will be displayed only when all the rows have value if any table value is not there(NA),It should not show total value.
Attached Image.In this image whenever NA is there total should not be displayed.
Can anyone help me on this.
Regards,
Mayank
Please see the attached:
Thank you for your reply.
In my case attached Image2 for your reference.In this highlighted in red where if any one value is NA total should be NA But it is not.
Can you please tell me what all settings you did?I ahve just used pivot chart and used partial sum option.
Regards,
Mayank
There are no other settings:
Select partial sum option for Geo_State and use the below dimensions and expressions for the pivot chart:
Dimensions:
Geo_State
Expressions:
metric1:
Sum(metric1)
Market:
If(Len(Trim(Market))>0,Market,'NA')
Share:
If(Len(Trim(Share))>0,Share,'NA')
I did the same in my case it is not showing NA in total.I have some confidential condition if that passses then will show the value else will show NA.
Any input on this please?
Regards,
Mayank
Is it possible to upload a small sample to look at it ?
what is your expression?
Please find attached sample application
for expression 'Market', try this..
=aggr(
IF(CT='IND PHA',if(Count(DISTINCT CM)>2 and max(OTLT_CNT)>3,Sum( {<CM=>}sales),'NA'),
if(Count(DISTINCT CM)>2 and Count(DISTINCT ENTERPRISE)>1 and max(OTLT_CNT)>2,Sum( {<CM=>}sales),'NA')),ST_CD,BG)
Hi Sethu,
In this case I am not getting value where both the records have value.
Regards,
Mayank