Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

synthetic Dimension with calculated values

Hello,

it is possible to create a chart with a calculated dimension?

Data:

[ Orgname, .......... ,Tax-Number

'A', ......, null

'B', ......, 123

'C, ......., 111

'D', ......, null ]

I want a pie chart with to values

- count of Orgname with a taxnumber

- count of Orgname without a taxnumber

and without a calculated field from the script

best regards

1 Solution

Accepted Solutions
Not applicable
Author

Yes Bauern its possible.

Use the below code in pie chart: dimension and expression respectively.

=If(isnull(Tax-Number),'Without Tax Number','Tax Number')

=count(Distinct Orgname)

Regards,

Kiran.

View solution in original post

2 Replies
Not applicable
Author

Yes Bauern its possible.

Use the below code in pie chart: dimension and expression respectively.

=If(isnull(Tax-Number),'Without Tax Number','Tax Number')

=count(Distinct Orgname)

Regards,

Kiran.

Not applicable
Author

perfect...... thank you