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! Request now
Hi
I have games column and date column I need to create a calculate column of games count, with respective date difference like last 6 days, 5 days with respective today's date..in dax code
Solved! Go to Solution.
Hi @Sivasai ,
Based on your description, I have created a simple sample:
Please try:
last 5 days = CALCULATE(DISTINCTCOUNT('Table'[games]),FILTER('Table','Table'[date]<TODAY()&&'Table'[date]>=TODAY()-5))
last 6 days = CALCULATE(DISTINCTCOUNT('Table'[games]),FILTER('Table','Table'[date]<TODAY()&&'Table'[date]>=TODAY()-6))
Final output:
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Sivasai ,
Based on your description, I have created a simple sample:
Please try:
last 5 days = CALCULATE(DISTINCTCOUNT('Table'[games]),FILTER('Table','Table'[date]<TODAY()&&'Table'[date]>=TODAY()-5))
last 6 days = CALCULATE(DISTINCTCOUNT('Table'[games]),FILTER('Table','Table'[date]<TODAY()&&'Table'[date]>=TODAY()-6))
Final output:
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@Sivasai , You can have new column like
datediff(Maxx(filter(Table, [Date]< earlier([Date])), [Date]), [Date], day) +1
Power BI DAX- Earlier, I should have known Earlier: https://youtu.be/CVW6YwvHHi8
If this does not help
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
I need to calculate gamescount for last 6days, 5 days, like that,
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.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 5 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 16 | |
| 8 | |
| 7 | |
| 7 |