Dear community,
I am trying to build a barchart with a series for each type of user. Which are the following:
- Investor
- Creator
- Administrator
And I want to count those by region. Which are the following:
- Center region
- North region
- East region
- NULL region
For my X-axis I am doing the following to display by region:
GROUP(@Region)
For my series I am doing the following:
GROUPBY(@Region;@UserType="Creator",count)
I expect for this series to only count where the user type is Creator. Nonetheless, the output is the count of all users despite the rule.
How can I do this in a different way so it works?