Forum Discussion
Anonymous
1 year agoNot applicable
Display previous months on the X axis
Hi Team, In continuation with post Solved: Re: Display 6 months on the X axis - Microsoft Fabric Community , I have achieved the requirement as suggested by danextian . However, on the same page th...
- 1 year ago
You can create another measure to establish a virtual relationship between the disconnected table and the related dates table using TREATAS.
Agg selected month = CALCULATE ( [Sum of Value], -- Applies the [Sum of Value] measure within the specified filter context. KEEPFILTERS ( -- Ensures existing filters on the DatesTable remain in place while applying the TREATAS filter. TREATAS ( VALUES ( DisconnectedDatesTable[Month and Year] ), -- Retrieves unique values from the DisconnectedDatesTable[Month and Year]. DatesTable[Month and Year] -- Maps the values from the disconnected table to the active DatesTable[Month and Year] column. ) ) )
danextian
Super User
1 year agoHi Anonymous
As disconnected tables cannot directly filter another table other than through measures, you either create a new measure or use the exisiting measure referencing the disconnected table as a visual filter.
Anonymous
1 year agoNot applicable
danextian Thanks mate for the alternate solution, however in the matrix below, only the selected month from the slicer should be filtered and not the previous months.
- danextian1 year ago
Super User
You can create another measure to establish a virtual relationship between the disconnected table and the related dates table using TREATAS.
Agg selected month = CALCULATE ( [Sum of Value], -- Applies the [Sum of Value] measure within the specified filter context. KEEPFILTERS ( -- Ensures existing filters on the DatesTable remain in place while applying the TREATAS filter. TREATAS ( VALUES ( DisconnectedDatesTable[Month and Year] ), -- Retrieves unique values from the DisconnectedDatesTable[Month and Year]. DatesTable[Month and Year] -- Maps the values from the disconnected table to the active DatesTable[Month and Year] column. ) ) )