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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

Reply
Anonymous
Not applicable

Categorize date difference in periods (1 month, 3 month, 6 month)

Hello! 

 

I hope someone can send me in a right direction 🙂

 

I have a table like this:

ID, Product, SalesDate, OfferExpirationDate

1, Chair, 10/1/2020, 11/1/2020

2, Table, 09/1/2020, 02/1/2021

 

I need to calculate if two dates are within specific period from each other (within 1 month, 3 month, 6 month).

Example:

ID 1: 10/1/2020 - 10/31/2020  = 30 days which within 1 month period so my column should have "1 month" value

ID 2: 09/1/2020 - 02/1/2021  = 153 days which within 6 month period so my column should have "6 month" value.

 

I know how to calculate date difference in days:

OfferSalesDays = ABS(DATEDIFF(SalesDate, OfferExpirationDate, DAY))

but I can't find how to "categorize" results in specific date range 1 month, 3 month, 6 month so i can use it as a column or filter.


Any advice is much appreciated!
Thank you!

2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

@Anonymous ,

OfferSalesDays = Quotient(ABS(DATEDIFF(SalesDate, OfferExpirationDate, DAY)),30)

or

OfferSalesDays = round(divide(ABS(DATEDIFF(SalesDate, OfferExpirationDate, DAY)),30),0)

 

or

OfferSalesDays = ABS(DATEDIFF(SalesDate, OfferExpirationDate, month))

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

View solution in original post

negi007
Community Champion
Community Champion

@Anonymous You can create a column like below

 

In Months = ROUND(( Product_furniture[ OfferExpirationDate]-Product_furniture[ SalesDate].[Date])/30,0) & " Month"
 
 

 




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



Proud to be a Super User!


Follow me on linkedin

View solution in original post

6 REPLIES 6
negi007
Community Champion
Community Champion

@Anonymous You can create a column like below

 

In Months = ROUND(( Product_furniture[ OfferExpirationDate]-Product_furniture[ SalesDate].[Date])/30,0) & " Month"
 
 

 




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



Proud to be a Super User!


Follow me on linkedin

amitchandak
Super User
Super User

@Anonymous ,

OfferSalesDays = Quotient(ABS(DATEDIFF(SalesDate, OfferExpirationDate, DAY)),30)

or

OfferSalesDays = round(divide(ABS(DATEDIFF(SalesDate, OfferExpirationDate, DAY)),30),0)

 

or

OfferSalesDays = ABS(DATEDIFF(SalesDate, OfferExpirationDate, month))

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here
Anonymous
Not applicable

@amitchandak @negi007 Thank you for your suggestions! It's closer to what i'm looking for but, if i understand you correctly, OfferSalesDays will contain number of month/30-day periods between two dates.

My final goal is to have a drop-down filter with just "1 month", "3 month", "1 year". I don't want my user to pick exact number of month but just a range/period.

Thank you!

@Anonymous Once you create calculated column, you can always use in slicer to select values. It will work for you.

 




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



Proud to be a Super User!


Follow me on linkedin

Anonymous
Not applicable

@negi007 @amitchandak 

Thank you! i've used your suggestion to calculate difference in months and then added SWITCH to set periods:

 

Here is what i'll use:

C1 = SWITCH(ABS(DATEDIFF(SalesDate, OfferExpirationDate, MONTH)), 1, "1 month", 2, "3 month", 3, "3 month", 4, "6 month", 5, "6 month", 6, "6 month", "year+")
 
Thank you again for your help!

@Anonymous ,

You can create column like

OfferSalesDays = round(divide(ABS(DATEDIFF(SalesDate, OfferExpirationDate, DAY)),30),0) & " month"

 

and use that in slicer

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

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