Forum Discussion
miinseon
Helper I
2 years agobar chart with two measures
HI all i want to show two measures in a bar chart. For example, measure 1 is the number of visitors and measure 2 is the number of paying customers. If visitors are 1000 and 200 paying customers...
- 2 years ago
miinseon - You can use a Stacked Column Chart with two measures. See below:
Visitors Paying = SUMX( 'Table (9)', 'Table (9)'[Visitors] - 'Table (9)'[Paying] )and
_Paying = SUM( 'Table (9)'[Paying] )
mark_endicott
Super User
2 years agomiinseon - You can use a Stacked Column Chart with two measures. See below:
Visitors Paying = SUMX( 'Table (9)', 'Table (9)'[Visitors] - 'Table (9)'[Paying] )
and
_Paying = SUM( 'Table (9)'[Paying] )
- mark_endicott2 years ago
Super User
If this works for you, please accept it as the solution!
- miinseon2 years ago
Helper I
The value is not what I want.
But I solved it by applying your suggestion
I created and used (visitor - paying).
Thanks 🙂