Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Composed_MS
Helper I
Helper I

Confusion in table connection for showing Trend

Hello,


I need to show the trend of previous 12 months data from the MonthYear selected in the slicer.

So, for this I have created duplicate of Calendar table (named Calendar2) and then created the connection as below with my fact table and main Calendar table.
Notice that the connection between Calendar table and Calendar2 table is inactive.

Composed_MS_0-1680205918141.png


I am using below measure to show trend->

 

Trend =
var previous_dates=DATESINPERIOD(Calendar2[Date],MAX(Calendar[Date]),-12,MONTH)

return
 CALCULATE([Measure],
    REMOVEFILTERS('Calendar'),
    KEEPFILTERS(previous_dates),
    USERELATIONSHIP('Calendar'[Date],Calendar2[Date]))
 

This is showing the correct trend (I am keeping MonthYear from Calendar2 table in X axis), but I am getting confused that why we are not creating a direct active connection between fact table and Calendar2 table as well, here if you see there's no connection between fact table and Calendar2 table.

Why can't we do that? When will I face the issue if I do this?

Can anyone please explain?

2 REPLIES 2
amitchandak
Super User
Super User

@Composed_MS , if you want show trend based on selected value, then calendar 2 should not join with any table

 

//Date1 is independent Date table, Date is joined with Table
new measure =
var _max = maxx(allselected(Date1),Date1[Date])
var _min = eomonth(_max, -12) +1
return
calculate( sum(Table[Value]), filter('Date', 'Date'[Date] >=_min && 'Date'[Date] <=_max))

 

Need of an Independent Date Table:https://www.youtube.com/watch?v=44fGGmg9fHI

Hello @amitchandak 

I need to select MonthYear from Calendar table date slicer and in trend I am showing Calendar2 dates, so for that I am connecting my Calendar table with Calendar2 table inactively and then using Userrelationship function.
That thing is not creating any issue as it is giving me the correct trend from the "Trend" measure I wrote above.
My confusion is why do we not create the direct relationship of Calendar2 with fact table?

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.