- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Count values of the same month last year
Hello everyone,
I have been looking in the forum for the answer to this issue but couldn't get with the answer.
I have a table (let's call it MyTable) with 2 columns: [Values] and [Date].
The graphic I want to make is a simple one: with months as X axis, and in the Y axis the difference between the amount of values on the month of the axis and the amount of values of the same month of the previous year (so I have the variability in %).
I can make a simple measure that counts the amount of values of a certain month, simply using the COUNTA function and filtering the months with the graphic and the year with a slicer, but I couldn't find a way to count the amount of values of the same month of the previous year.
Thanks in advance!
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You had tried DateAdd?
= COUNT(MyTable[Values])/ CALCULATE( COUNT(MyTable[Values]);DATEADD( MyTable[Date];-1;YEAR))

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You had tried DateAdd?
= COUNT(MyTable[Values])/ CALCULATE( COUNT(MyTable[Values]);DATEADD( MyTable[Date];-1;YEAR))
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
EDIT: It worked, thanks! I didn't know how the function DATEADD worked.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I tried doing that. It gives me an error on the visual, saying "MyTable[Value]: A date column containing duplicate dates was specified in the call to function 'DATEADD'. This is not supported. I don't understand this error... I thought DATEADD was just a movement of the dates 1 year backwards.

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
08-01-2024 08:00 PM | |||
09-27-2024 04:21 AM | |||
06-03-2024 11:36 AM | |||
05-09-2024 08:47 AM | |||
05-30-2024 07:10 AM |
User | Count |
---|---|
141 | |
110 | |
81 | |
61 | |
46 |