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 am trying to express this condition in DAX.
Table.ImmunizationDate > Table.ConsentDate
They are located in different row context (different row).
But, both have common which is Step = 1
However, to distinguish two better,
ImmunizationDate has "Historical" as Consent
ConsentDate has "Refused" as Consent
Solved! Go to Solution.
Hey @JustinDoh1 ,
I'm not really sure how the result should look like. I just guessed you want to return a 1 if Table.ImmunizationDate > Table.ConsentDate and a 0 if not.
Try the following measure:
Immunization after Consent =
VAR vImmunization =
CALCULATE(
MAX( myTable[ImmunizationDate] ),
ALLEXCEPT(
myTable,
myTable[Step]
)
)
VAR vConsent =
CALCULATE(
MAX( myTable[ConsentDate] ),
ALLEXCEPT(
myTable,
myTable[Step]
)
)
RETURN
IF(
vImmunization > vConsent,
1,
0
)
Hey @JustinDoh1 ,
I'm not really sure how the result should look like. I just guessed you want to return a 1 if Table.ImmunizationDate > Table.ConsentDate and a 0 if not.
Try the following measure:
Immunization after Consent =
VAR vImmunization =
CALCULATE(
MAX( myTable[ImmunizationDate] ),
ALLEXCEPT(
myTable,
myTable[Step]
)
)
VAR vConsent =
CALCULATE(
MAX( myTable[ConsentDate] ),
ALLEXCEPT(
myTable,
myTable[Step]
)
)
RETURN
IF(
vImmunization > vConsent,
1,
0
)
User | Count |
---|---|
25 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
27 | |
13 | |
11 | |
9 | |
6 |