Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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