Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Data Grouping

I've got an Excel spreadsheet with Dates and values associated with each dates,

I'm trying to make a graph that can compare the sum of the values from June 21st 2018 to June 21st 2019 to the sum of the values between June 21st 2019 to June 21st 2020.

 

Is it possible ?

 

Thank you

1 ACCEPTED SOLUTION
v-jayw-msft
Community Support
Community Support

Hi @Anonymous ,

 

I'm not sure what your table structure looks like and what kind of output visual you want.

I'd like to suggest you to create some Meaures as below.

sum2019 = CALCULATE(SUM('Table'[value]),FILTER('Table','Table'[date]>=DATE(2018,6,21)&&'Table'[date]<DATE(2019,6,21)))
sum2020 = CALCULATE(SUM('Table'[value]),FILTER('Table','Table'[date]>=DATE(2019,6,21)&&'Table'[date]<DATE(2020,6,21)))

 Result would be shown as below.

1.PNG

If i misunderstood your meaning, please share some sample data and expected result to us if you don't have any Confidential Information.

 

Best Regards,

Jay

Community Support Team _ Jay Wang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.

View solution in original post

3 REPLIES 3
GanzorigBatbold
Frequent Visitor

A more dynamic (future-proof) solution would be adding a custom column on the table that contains your dates. Lets assume the name of that table is 'table' and the column that contains dates is 'date'. Then the DAX should look something like this:

 

=if(month('table'[date])<6,year(date),if(month('table'[date])=6 && day('table'[date])<21,year(date),year(date)+1))

 

Then you can use this column to filter your data. Should give the categorisation you desire.

 

 

v-jayw-msft
Community Support
Community Support

Hi @Anonymous ,

 

I'm not sure what your table structure looks like and what kind of output visual you want.

I'd like to suggest you to create some Meaures as below.

sum2019 = CALCULATE(SUM('Table'[value]),FILTER('Table','Table'[date]>=DATE(2018,6,21)&&'Table'[date]<DATE(2019,6,21)))
sum2020 = CALCULATE(SUM('Table'[value]),FILTER('Table','Table'[date]>=DATE(2019,6,21)&&'Table'[date]<DATE(2020,6,21)))

 Result would be shown as below.

1.PNG

If i misunderstood your meaning, please share some sample data and expected result to us if you don't have any Confidential Information.

 

Best Regards,

Jay

Community Support Team _ Jay Wang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.
GilbertQ
Super User
Super User

Hi there

This would be possible, what you would need to do is to create a measure using the SAMEPERIODLASTYEAR

Or you would need to define a period in your date table for the values you want to compare?

If you have some sample data, that would assist people in giving you the solution.




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!







Power BI Blog

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors
Top Kudoed Authors