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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
v-yuezhe-msft
Employee
Employee

@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

Community Support Team _ Lydia Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.