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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
Anonymous
Not applicable

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

@Anonymous , 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

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@Anonymous , 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

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.