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
Anonymous
Not applicable

Dynamic IF formula based on date range slicer

Hi there!

 

I hope someone can help me here.

I want to create a table that states whether a product was purchased within a certain period. The period would depend on what date the user chooses in the date range slicer. So I'm thinking of something like this:

If (product) is in (selected date range), then "yes", else "no"

 

Does this make sense?

Thanks a lot for your help!

2 ACCEPTED SOLUTIONS
mattww
Responsive Resident
Responsive Resident

Hi @Anonymous ,

 

This should be achievable with a normal calendar table, so if you have a calendar with one row per day, including a date column plus another column indicating the period

 

Date_KeyDatePeriod
2021110101-11-2021P1
2021110202-11-2021P1
2021110303-11-2021P1
2021120101-12-2021P2

* sorry the formatting on this table isn't behaving, and HTML isn't my thing!


Add the Date column to your slicer, and the Period column to your visual (bar chart, table, whatever).

 

If this is joined to your Sales table based on the Sales date (the key ideally), a simple COUNTROWS([SalesTable]) or DISTINCTCOUNT([CustomerId]) measure would work in your visual, to count up how many of a given product (another slicer presumably) were sold in each period.

 

Let me know if that doesn't make sense or if I'm not understanding what you're aiming for

 

Matt

 

If this post helps then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

mattww
Responsive Resident
Responsive Resident

Hey @Anonymous,

 

Ah ok, I get you. 

 

So I think the problem you're going to have is an attribute like Yes / No would naturally be something like a Calculated Column, but these are only calculated when the report is refreshed, so would not be responsive to slicer changes.

 

Measures on the other hand would be responsive, but only really apply in aggregate, you can't create a measure which applies an attribute to each row.

 

You could get around this by having two date tables, one (unrelated) table to capture your date selection and another standard date table attached to your Sales

 

Relationships.PNG

 

Now you will be able to use CALCULATE to count up (or sum up) any rows in the Sales table where the date is within the selected range

 

Count_Sales = COUNTROWS(Fact_Sales)

Count_Sales_SelectedPeriod = CALCULATE(Fact_Sales[Count_Sales],ALL(Dim_SalesDate),Dim_SalesDate[Date] >= MIN(Dim_SelectedDate[Date]),Dim_SalesDate[Date] < MAX(Dim_SelectedDate[Date]))
 
This count could then be used in an IF formula if you needed some kind of indicator on each Sales row.
 
IsInPeriod = IF(Fact_Sales[Count_Sales_SelectedPeriod] > 0,"Yes","No")
 
See samples below showing two different date selections on some simple sample data
 
DateSlicer1.PNGDateSlicer2.PNG

Matt

 

If this post helps then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

5 REPLIES 5
Anonymous
Not applicable

@mattww Thanks a lot, it's working! 🙂 

Anonymous
Not applicable

Hi Matt,

 

Thanks for your reply!

 

I'm not sure I understand you correctly. I'm not looking for a measure to sum up the amount that was sold within a certain period. Instead, I'm looking for a "yes/no" result. My current formula is:


Product Sold =
IF(Product[Last Time It Was Sold].[MonthNo] >= MONTH(TODAY())-3, "Product Sold", "Product Not Sold")
 
However, instead of just stating whether a product was sold within the last 3 months, I want the date range to depend on what the user of the dashboard chooses in the date range slicer. So it could be within the past 3 days, 4 months, 6 months, 2 years etc., whatever date range the user selects. I should also mention that the date ranger slicer is in the DD.MM.YYYY format (s. below).
 
Date Range Slicer.PNG
mattww
Responsive Resident
Responsive Resident

Hey @Anonymous,

 

Ah ok, I get you. 

 

So I think the problem you're going to have is an attribute like Yes / No would naturally be something like a Calculated Column, but these are only calculated when the report is refreshed, so would not be responsive to slicer changes.

 

Measures on the other hand would be responsive, but only really apply in aggregate, you can't create a measure which applies an attribute to each row.

 

You could get around this by having two date tables, one (unrelated) table to capture your date selection and another standard date table attached to your Sales

 

Relationships.PNG

 

Now you will be able to use CALCULATE to count up (or sum up) any rows in the Sales table where the date is within the selected range

 

Count_Sales = COUNTROWS(Fact_Sales)

Count_Sales_SelectedPeriod = CALCULATE(Fact_Sales[Count_Sales],ALL(Dim_SalesDate),Dim_SalesDate[Date] >= MIN(Dim_SelectedDate[Date]),Dim_SalesDate[Date] < MAX(Dim_SelectedDate[Date]))
 
This count could then be used in an IF formula if you needed some kind of indicator on each Sales row.
 
IsInPeriod = IF(Fact_Sales[Count_Sales_SelectedPeriod] > 0,"Yes","No")
 
See samples below showing two different date selections on some simple sample data
 
DateSlicer1.PNGDateSlicer2.PNG

Matt

 

If this post helps then please consider Accept it as the solution to help the other members find it more quickly.

Hi Matt,

Would you be able to explain how you were able to create a table to capture your date selection?

I would like to use your solution above for a project.

Thanks,

Abigail 

mattww
Responsive Resident
Responsive Resident

Hi @Anonymous ,

 

This should be achievable with a normal calendar table, so if you have a calendar with one row per day, including a date column plus another column indicating the period

 

Date_KeyDatePeriod
2021110101-11-2021P1
2021110202-11-2021P1
2021110303-11-2021P1
2021120101-12-2021P2

* sorry the formatting on this table isn't behaving, and HTML isn't my thing!


Add the Date column to your slicer, and the Period column to your visual (bar chart, table, whatever).

 

If this is joined to your Sales table based on the Sales date (the key ideally), a simple COUNTROWS([SalesTable]) or DISTINCTCOUNT([CustomerId]) measure would work in your visual, to count up how many of a given product (another slicer presumably) were sold in each period.

 

Let me know if that doesn't make sense or if I'm not understanding what you're aiming for

 

Matt

 

If this post helps then please consider Accept it as the solution to help the other members find it more quickly.

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.