Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
Hi there,
I have a data set which includes a set of records where each has a Start Date and a Close Date. I would like to count the number of records which have a Start Date that falls within the first 6-months of an 8-month period prior to the Current Date (today). Once this count is obtained, I then want to also count how many of those records identified have a Close Date that falls within the last 2-months of that same 8-month period. From both of these counts, a conversion rate should then be calculated.
I've created the image below which may help to visualise the support needed in helping to create this. This window is moving, so tomorrow the conversion rate may change depending on how the data has adapted as part of the resfresh.
From a data perspective, my data is as simple as the Table below and also each date column is linked to it's own seperate Calendar Table. Any help is appreciated on this, thanks.
ID | Start Date | Close Date |
1 | 03/09/2022 | 01/11/2022 |
2 | 21/07/2022 | 03/12/2022 |
3 | 08/06/2022 | 05/10/2022 |
4 | 07/07/2022 | 24/09/2022 |
5 | 09/09/2022 | 11/11/2022 |
Hi @Mehal1996 ,
I add some data:
Here are the steps you can follow:
1. Create measure.
Count the start date =
var _today=TODAY()
var _last6date=
DATE(
YEAR(_today),MONTH(_today)-6,DAY(_today))
var _interval=
SELECTCOLUMNS(FILTER(ALL('Table'),'Table'[Start Date]>=_last6date&&'Table'[Start Date]<=_today),"date",[Start Date])
return
COUNTX(FILTER(ALL('Table'),'Table'[Start Date] in _interval),[ID])
Count the Close date =
var _today=TODAY()
var _next2date=
DATE(
YEAR(_today),MONTH(_today)+2,DAY(_today))
var _interval=
SELECTCOLUMNS(FILTER(ALL('Table'),'Table'[Close Date]>=_today&&'Table'[Close Date]<=_next2date),"date",[Close Date])
return
COUNTX(FILTER(ALL('Table'),'Table'[Close Date] in _interval),[ID])
2. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi Liu Yang,
Thanks for the response. Really appreciate you looking into this.
This works for the most part, however, theres no guarantee that the count of IDs that fall within the first 6 months (for start date) are only the ones that are considered for the count of IDs that fall within the last 2 months (for close date) of the rolling window (8 months window in total)
I applied your measures and the count of IDs that fall within the last 2 months (for close date) is coming out as 4 when it should be 3 after doing a manual check. I believe the 4th ID count is being counted as it has a close date within the last 2 months period, however, it doesn't have a start date within the first 6 months period.
Thanks.
@Mehal1996 , refer if one of these blogs or attached files can help
Measure way
Power BI Dax Measure- Allocate data between Range: https://youtu.be/O653vwLTUzM
https://community.powerbi.com/t5/Community-Blog/How-to-divide-distribute-values-between-start-date-o...
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.