Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
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!
Solved! Go to Solution.
@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))
@Anonymous You can create a column like below
Proud to be a Super User!
@Anonymous You can create a column like below
Proud to be a 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))
@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.
Proud to be a Super User!
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:
@Anonymous ,
You can create column like
OfferSalesDays = round(divide(ABS(DATEDIFF(SalesDate, OfferExpirationDate, DAY)),30),0) & " month"
and use that in slicer
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 48 | |
| 43 | |
| 39 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 67 | |
| 63 | |
| 30 | |
| 30 | |
| 23 |