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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
adeeln
Post Patron
Post Patron

Need Help to resolve inactive relationship.

I have two dates in Fact table One is "Closeddate" and second date is "newAccountDate".I have  created Date dimension table on the based of closed date .I have Active Relationship between "Closed date" from Fact table and "Date" from dimension date table.

The reason behind to created Active realtionship with closed date because some measures worked on the based of Closed date.

For only one measure i need realtionship with "newAccountDate" but this is not work . When i use "newAccountDate" from fact table its work .But i am use Date(month,year,monthyear) from Date table this date is not work. i have used following measure.

Nb Of New Accounts =
var minSelectedDate = MIN(DimDate[Date])
return
CALCULATE(
DISTINCTCOUNT(Opportunity[AccountKey]),
FILTER(Opportunity,
[newAccountDate] >= minSelectedDate
)
,USERELATIONSHIP(Opportunity[newAccountDate],DimDate[Date]))

Pbix file link is given below
https://www.dropbox.com/s/z80yp4zpjmnzsxm/Trends%20Analysis.pbix?dl=0 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@adeeln , Create measure like

Nb Of New Accounts = 


var  minSelectedDate = minx(ALLSELECTED(DimDate), DimDate[Date])
return //minSelectedDate
CALCULATE(
    DISTINCTCOUNT(Opportunity[AccountKey]), 
    FILTER(DimDate,
    DimDate[Date]>= minSelectedDate
    ),USERELATIONSHIP(Opportunity[newAccountDate],DimDate[Date]))

 

also check I doubt dates are missing for newaccountdate

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@adeeln , Create measure like

Nb Of New Accounts = 


var  minSelectedDate = minx(ALLSELECTED(DimDate), DimDate[Date])
return //minSelectedDate
CALCULATE(
    DISTINCTCOUNT(Opportunity[AccountKey]), 
    FILTER(DimDate,
    DimDate[Date]>= minSelectedDate
    ),USERELATIONSHIP(Opportunity[newAccountDate],DimDate[Date]))

 

also check I doubt dates are missing for newaccountdate

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.