The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
I want a list of patients that take 2 (Or more) medication types at the same time. The table would be;
Name Benzos____________Opioids___________Medication
Patient A Y N Xanax
Patient B Y N Xanax
Patient C Y N Xanax
Patient C N Y Lortab
Patient D N Y Lortab
Patient E Y N Xanax
Patient E N Y Hydrocodone
Ideally, my visual would only display Patient C and Patient E (Those patients that had both a Benzo and Opioid medication, although different rows). I can't group by--as that will break the rest of my report. If I try a new Conditional Column (Or custom column with an IF statement), since it evaluates row by row without grouping by Patient--I end up with the same issue. Thanks for any help!
Solved! Go to Solution.
@AgeOfEgos Please try this using "New Column" option
MultiMedicationFlag =
IF(AND(PatMedication[Benzos]="Y",PatMedication[Opioids]="Y"),"Y",
IF(AND(PatMedication[Benzos]="Y",COUNTROWS(FILTER(ALL(PatMedication),PatMedication[Opioids]="Y" && PatMedication[Name] = EARLIER(PatMedication[Name])))>0),"Y",
IF(AND(PatMedication[Opioids]="Y",COUNTROWS(FILTER(ALL(PatMedication),PatMedication[Benzos]="Y" && PatMedication[Name] = EARLIER(PatMedication[Name])))>0),"Y","N")
)
)
Proud to be a PBI Community Champion
@AgeOfEgos Please try this using "New Column" option
MultiMedicationFlag =
IF(AND(PatMedication[Benzos]="Y",PatMedication[Opioids]="Y"),"Y",
IF(AND(PatMedication[Benzos]="Y",COUNTROWS(FILTER(ALL(PatMedication),PatMedication[Opioids]="Y" && PatMedication[Name] = EARLIER(PatMedication[Name])))>0),"Y",
IF(AND(PatMedication[Opioids]="Y",COUNTROWS(FILTER(ALL(PatMedication),PatMedication[Benzos]="Y" && PatMedication[Name] = EARLIER(PatMedication[Name])))>0),"Y","N")
)
)
Proud to be a PBI Community Champion
That was brilliant, thank you!
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
108 | |
77 | |
76 | |
46 | |
39 |
User | Count |
---|---|
137 | |
108 | |
64 | |
64 | |
53 |