Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hello Community!
Here giving can again, heh! I hope they are fine, I have been investigating but I can no longer find answers and maybe they can guide me, I tell you about my problem, I have a column that brings me the recidivism of a type of report, however this time I need to extract the total of them in a specific period, in this case October, I have tried to apply this,  but it doesn't give me any results:
CALCULATE( [ReincidenciaA], DATESBETWEEN ('reportes reportes_all'[fecha_alta], DATE(2021, 09, 30), DATE(2021, 11, 01))
In advance I thank you
Best regards
Solved! Go to Solution.
First, It's better if you add a Date Table to your report: https://www.vahiddm.com/post/creating-calendar-table-with-3-steps
Test this:
CALCULATE( [ReincidenciaA], FILTER ( ALL( 'reportes reportes_all' ), 'reportes reportes_all'[fecha_alta]>DATE(2021, 09, 30) &&'reportes reportes_all'[fecha_alta]< DATE(2021, 11, 01)))
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
Hi,
You must first create a Calendar Table with a relationship from the Date column of your Data Table to the Date column of your Calendar Table. In the Calendar Table, write calculated column formulas to extract Year, Month name and Month number. Sort the Month name by the Month number. To your visual/filter/slicers, drag Year/Month name from the Calendar Table. Your measure should look something like this
=CALCULATE( [ReincidenciaA], DATESBETWEEN (Calendar[Date], DATE(2021, 09, 30), DATE(2021, 11, 01))
Hope this helps.
🎉🎉Thank you very much! 😊👍
I was able to implement it, I just wanted to check the link that you leave me but it does not allow me to access.
I thank you infinitely
Best regards
Sorry I did not get that! Access to file?or code?
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
I refer to this link, it does not let me access:
First, it's best if you add a date table to your report: https://www.vahiddm.com/post/creating-calendar-table-with-3-steps
First, It's better if you add a Date Table to your report: https://www.vahiddm.com/post/creating-calendar-table-with-3-steps
Test this:
CALCULATE( [ReincidenciaA], FILTER ( ALL( 'reportes reportes_all' ), 'reportes reportes_all'[fecha_alta]>DATE(2021, 09, 30) &&'reportes reportes_all'[fecha_alta]< DATE(2021, 11, 01)))
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.