Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Dear community,
I am trying to create a revenue trend chart by year and month but also I would like to show the total yearly revenue which will be the same for each month under the relevant year.
For instance: The "Sum Rev" has to be 49.340.623,90 for each month under 2017.
Total Revenue = SUM('Table'[Revenue])
Solved! Go to Solution.
Hi,
Thank you for sharing sample pbix file.
I assumed your sample had a calendar table.
Please check the attached file whether it suits your requirement, that I have changed the measure a little bit.
Sum Rev =
VAR _currentyear =
YEAR ( MAX ( Test[Reporting Month] ) )
RETURN
CALCULATE (
[Total Revenue],
FILTER ( ALL ( Test ), YEAR ( Test[Reporting Month] ) = _currentyear )
)
Hi,
I am not sure how your datamodel looks like, but please something like below whether it suits your requirement.
Sum Rev =
CALCULATE (
[Total Revenue],
ALL ( calenartable ),
VALUES ( calendartable[Year] )
)
@Jihwan_Kim
Your query did not work for my data model.
Please reach my sample data through the below link:
SAMPLE LINK
Hi,
Thank you for sharing sample pbix file.
I assumed your sample had a calendar table.
Please check the attached file whether it suits your requirement, that I have changed the measure a little bit.
Sum Rev =
VAR _currentyear =
YEAR ( MAX ( Test[Reporting Month] ) )
RETURN
CALCULATE (
[Total Revenue],
FILTER ( ALL ( Test ), YEAR ( Test[Reporting Month] ) = _currentyear )
)
User | Count |
---|---|
12 | |
12 | |
8 | |
8 | |
6 |
User | Count |
---|---|
27 | |
19 | |
13 | |
11 | |
7 |