Power BI: How to add slicer from a different table?
问题 I'm trying to plot a cumulative line chart in PowerBI and add some slicers to it. Let me first describe my data. My data looks as below: To plot a cumulative chart, I'm creating a new table using below formula: Cumulative = CALENDAR(DATE(2017, 9, 24), DATE(2017, 10, 12)) In this new table, I'm adding 2 more columns as below: Issues_Logged = COUNTROWS(FILTER(Sheet1, Sheet1[Creation_Date].[Date] <= Cumulative[Date].[Date])) + 0 Issues_Resolved = COUNTROWS(FILTER(Sheet1, Sheet1[Resolution_Date].