Forum Discussion
How can I show 2 axis on a column chart
- 9 years ago
I'd need some sample data to be certain how to help, but if you had a Calendar table of just dates, then you could use this to calculate how many starting and ending contracts you have by using either a couple of measures or calculated columns.
I think what you may want to do is to have a single Axis but two different values for each date, the number of contracts created and the number of contracts ending.
I guess then that I would need to create another value to calculate the number of contracts starting and ending based on a time scale...
- Greg_Deckler9 years ago
Community Champion
I'd need some sample data to be certain how to help, but if you had a Calendar table of just dates, then you could use this to calculate how many starting and ending contracts you have by using either a couple of measures or calculated columns.
- cmenendez9 years agoRegular Visitor
Great, thanks for the help.
I created a table with monthly incremental and I made a calculation for every month of the active customers, and another calculation with the expired customers.
Maintenancecustomers = CALCULATE([nrCTS],
Filter(ContractData,ContractData[Contract Start]< Dates[Dates]),FILTER(ContractData,ContractData[Contract End]>Dates[Dates]))With that, I could create the graph which I was looking for.
Greg_Deckler I will add your comment as the solution
Thanks again!