Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
deb
New Member

Computation with Custom Date Slicer

Hi Everyone. I have never used DAX before and i need some inputs on this one:

 

I would like to compare the values between two dates, based on the dates that the user will select on the date slicer.
For example, if the user selects the dates June 28 and June 29, it should get the difference between the two dates using  this formula
(clicks from today's date - clicks from previous day ) / clicks from previous day.

if the user select july 3 and july 4, then it should do the same formula.

Any ideas?

2 REPLIES 2
Anonymous
Not applicable

@deb,

Please elaborate more details about your formula. What do you mean by “clicks from today's date”  and “clicks from previous day”? And do you select two values in the date slicer at once? You can post expected result based on your sample data in a table if possible.


Regards,
Lydia

Anonymous
Not applicable

If you want to get the difference, create a measure:

 

 

DateDifference = DATEDIFF(MIN('Table'[Date]),MAX('Table'[Date]),DAY)

 

Use that measure in other calculations as needed.

 

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors