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
Hi, I need to find the pages entered Delta (new Delta Column) from the last 8 days, based on my created expression ("custom") which calculates the difference in days between my create date and today (See below screenshot column named custom).
Here is my current measure and one line of data.
Thank you in advance for your help!
Solved! Go to Solution.
 
					
				
		
Hi @Coffee2023 ,
Based on my testing, please try the following methods again:
1.Create the simple tables.
2.Create the new custom column to calculate the difference.
Custom = 
var today_ = TODAY()
RETURN
DATEDIFF('All Programs DE'[Create Date], today_, DAY)3.Create the new measure to filter the row values.
Delta = 
CALCULATE(
    SUMX(
        'All Programs DE',
        'All Programs DE'[Pages Entered]
    ),
    FILTER(
        'All Programs DE',
        'All Programs DE'[Custom] < 8
    )
)4.The result is shown below.
Best Regards,
Wisdom Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
 
					
				
		
Hi @Coffee2023 ,
Based on my testing, please try the following methods again:
1.Create the simple tables.
2.Create the new custom column to calculate the difference.
Custom = 
var today_ = TODAY()
RETURN
DATEDIFF('All Programs DE'[Create Date], today_, DAY)3.Create the new measure to filter the row values.
Delta = 
CALCULATE(
    SUMX(
        'All Programs DE',
        'All Programs DE'[Pages Entered]
    ),
    FILTER(
        'All Programs DE',
        'All Programs DE'[Custom] < 8
    )
)4.The result is shown below.
Best Regards,
Wisdom Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
 
					
				
				
			
		
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 | 
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 | 
| User | Count | 
|---|---|
| 23 | |
| 12 | |
| 11 | |
| 10 | |
| 9 |