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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I have a dataset with Payments for a specific yearly subscription:
ID, Customer, StartDate, EndDate, PaymentDate
When you renew your subscription, a new record is created in that Payments table, with the StartDate = EndDate previous + 1 and EndDate = StartDate + 12 months.
Example:
ID 1: Customer X: 15/02/2023 - 14/02/2024, Paid: 15/02/2023
ID 2: Customer X: 15/02/2024 - 14/02/2025, Paid: 09/02/2024
I want to create a measure in this dataset that indicates that there is a follow-up subscription.
So for ID 1:
ID 1: Customer X: 15/02/2023 - 14/02/2024, Paid: 15/02/2023 => Yes, because there is a record ID 2 for the same customer and with StartDate equals to the EndDate of record with ID 1 + 1 day.
ID 2: Customer X: 15/02/2024 - 14/02/2025, Paid: 09/02/2024 => No, because there is no record for the same customer and with StartDate equals to the EndDate of record with ID 1 + 1 day.
But I really haven't a single idea on how to start on this ...
Solved! Go to Solution.
Hi
A result with a new column in the table
Hi
A result with a new column in the table
Wauw thanks! This is absolutely the solution 🙂
Also the first time I work with inline variables in DAX so a good start for me!