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!View all the Fabric Data Days sessions on demand. View schedule
Hello community,
I have a report where I have visualizations based on the sending date for the data. This data belongs to vehicles, and they also have a contract start date, and a latest sending data date, if that makes sense.
Until now I was using a date column coming from a date table, based on the minimum sending date, but I would like to create a new personalized measure for the date, that would take the contract start date as the starting date, even if there was data sent before (that could happen) and the latest date where the vehicle sent data, and that would be applied to a date filter that I have for the visualizations.
Is that possible?
Cheers 😄
| Vehicle | Contract Start Date |
| A | 2022-10-22 |
| B | 2021-05-04 |
| C | 2021-09-06 |
| D | 2021-08-03 |
| Vehicle | Date | Value |
| A | 2023-10-19 | 1000 |
| A | 2023-10-18 | 2000 |
| A | 2023-10-17 | 3000 |
| B | 2023-10-18 | 2500 |
The I have a calendar table created dinamically basec on min(readings[date]), like:
Once I have created this table, I use the date to add it to the displayed filter, and then I create a line chart where I have date in the x axis and the readings in the y axis. Also I have a filter to select which vehicle/fleet/customer I want, and my desire would be that the date filter would show the contract_start_date as the initial value, and the max reading date as the max value, according to my selection:
Thanks again 🙂
Hi @Victormar,
Please consider below measure and add it into the visual level filter. Thanks.
Start from Contract Start Date =
IF( CALCULATE(MIN('Table'[Contract Start Date])) < SELECTEDVALUE('Table'[Sent Date]),1,0)
Best Regards,
Joyce
Thanks for your help. I tried it but the visual doesn't change, it's always the same. Could it be that the filters are not made to dynamically change?
It should be able to change. Please share some dummy data and your chart so we could have more information, thanks!
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!