Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
How to show '-' values as 'NA'.
Thanks
Thank You All
Is it possible to apply background color for 'NA'?
yes u can do .
if it used in stright or pivot table
u can use custom format cell option in design grid vie.
Hi,
Try like this
If(Len(Trim(DimensionName)) = 0, Color1, Color2)
Hope this helps you.
Regards,
Jagan.
Hi,
If you handled in script like below
Hi,
Try like this
LOAD
If(Len(Trim(DimensionName)) = 0, 'NA', DimensionName) AS DimensionName
FROM ...;
If(DimensionName= 'NA', Color1, Color2)
Hope this helps you.
Regards,
Jagan.
Hi
Yes, its possible
Background color Expression
=if(Len(Trim(YourFieldName)>0, White(), Red())
Ex:
Project Number | Customer A/c Name | Sum([Sales Revenue]) |
---|---|---|
80449.24 | ||
1234567 | 21956.44 | |
1234567 | Black | 13290 |
1234567 | Jones | 22576.6 |
1234567 | Smith | 22626.2 |