The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I need to filter the activity table but to show activity data after an event. So for example event date+1 I will then want to see the activity for the next 3 months from that date. The activity data covers a 3 year period but the events will be from this calendar year only.
Hi @andrewtegala ,
You could create a calendar table which contains dates you need. Then edit relationships between these table. Use DATEADD() function to get the date after 3 months(suppose the date is A). Now you could add a condition to show date <=A and date >= the date you selected.
I have a Date table defined which I am using to control time period across the whole report. I have now created a seperate date table for the activities only but seem unable to use the DATEADD function. Will that only work on a date table with continuous dates? On which table would I add the condition as mentioned in your solution - show date <=A and date >= the date you selected