Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Guys, all right?
I have a dataset with 2 columns (Product Code, Date), I need to map the products that are recurring for example (today() and today()-1), the big problem is that I have 1 date per line as in the example below
| Codigo produto | Data |
| 001 | 01/02/2021 |
| 001 | 02/02/2021 |
| 001 | 03/02/2021 |
| 001 | 04/02/2021 |
| 001 | 05/02/2021 |
| 001 | 06/02/2021 |
| 001 | 07/02/2021 |
| 002 | 01/02/2021 |
| 002 | 02/02/2021 |
| 002 | 03/02/2021 |
| 002 | 04/02/2021 |
| 002 | 05/02/2021 |
| 002 | 06/02/2021 |
| 002 | 07/02/2021 |
| 002 | 08/02/2021 |
Solved! Go to Solution.
Please consider this solution and click the thumbs up icon just for me taking the effort to helping you, and click accept the solutioin if it fixes your problem. Cheers !
Please consider this solution and click the thumbs up icon just for me taking the effort to helping you, and click accept the solutioin if it fixes your problem. Cheers !
It didn't work, I need to count the products that were yesterday and today, so I need the two values to define the recurrence
If you create a visual table with product and date then this measure will flag any product that has a record for the previous day. I tested it ok
Okay, I need it to filter by product code, that way it would only evaluate the date, right?
Hi again Vitor_sp_bo
Report visuals have default row and column filters. In this case Product and Date.
The CALCULATE command is amazing and lets you override one or more of these default row filters.
In my example the CALCULATE command does not override the default row Product filter, but it does override the default row Date filter with the previous date. So this will only get the previous date for the same Product, because the default row Product filter is still applied. Understand now?
You can sort the visual by Product and Date and the measure will still work ok, because the measure uses the source data and not the sequence of report rows.
You can add a Product slicer but take care adding a Date slicer.
Please click the thumbs up and ACCEPT SOLUTION. Thank you
Reoccurs =
var mydate = SELECTEDVALUE('Table'[Date])
var prevdate = mydate - 1
RETURN
CALCULATE(
COUNTROWS('Table'),
'Table'[Date] = prevdate
)
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 61 | |
| 58 | |
| 42 | |
| 18 | |
| 15 |
| User | Count |
|---|---|
| 105 | |
| 99 | |
| 38 | |
| 29 | |
| 29 |