Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I have the following relationships in my data model:
There is an active relationship between DimCalendar[Datum] and FactAppointment[Datum afspraak]. There is an inactive relationship between DimCalendar[Datum] and FactAppointment[Boeking afspraak].
When using the following DAX I get the wrong results:
NP = var numberOfNewPatients = CALCULATE(DISTINCTCOUNT(FactAppointment[PatientID]), FILTER(FactAppointment, FactAppointment[EarliestDateBoeking] = TRUE() && FactAppointment[EarliestDateAfspraak] = TRUE())) var finalMeasure = CALCULATE(numberOfNewPatients, USERELATIONSHIP(FactAppointment[Datum boeking], DimCalendar[Datum])) RETURN finalMeasure
When I manually deactivate the relationship between DimCalendar[Datum] and FactAppointment[Datum afspraak] and activate the relationship between DimCalendar[Datum] and FactAppointment[Boeking afspraak] I get the correct result.
Does anyone know what I might be doing wrong?
Solved! Go to Solution.
@Sohan You can't use a VAR with CALCULATE that way. You would have to have numberOfNewPatients as a separate measure and then your finalMeasure as a separate measure. CALCULATE is not going to recalculate a VAR because VAR's are static (I know that doesn't make sense but it is no less a fact).
@Sohan You can't use a VAR with CALCULATE that way. You would have to have numberOfNewPatients as a separate measure and then your finalMeasure as a separate measure. CALCULATE is not going to recalculate a VAR because VAR's are static (I know that doesn't make sense but it is no less a fact).
User | Count |
---|---|
77 | |
76 | |
41 | |
29 | |
24 |
User | Count |
---|---|
96 | |
91 | |
52 | |
47 | |
46 |