Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
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.
Pbix file link is given below
https://www.dropbox.com/s/z80yp4zpjmnzsxm/Trends%20Analysis.pbix?dl=0
Solved! Go to Solution.
@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
@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
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 22 | |
| 21 | |
| 20 | |
| 19 | |
| 13 |
| User | Count |
|---|---|
| 58 | |
| 52 | |
| 37 | |
| 31 | |
| 27 |