Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
Data table linked to a Key and Date Dimension:
I want to calculate a 1 the first time a Patient ID appears per service date.
If a Patient ID appears multiple times on a particular service date, I only want to calculate a 1 the first time it appears.
Is there an easy way to do this as a calculated column?
Solved! Go to Solution.
I ended up concatenating Pat_ID and Orig_Service_Date and then doing a Distinct Count of that
I ended up concatenating Pat_ID and Orig_Service_Date and then doing a Distinct Count of that
You should probably do this as a measure and not a column. Here is one way to do it, if I understand your scenario correctly.
Unique Visits = COUNTROWS(SUMMARIZE(Data, Data[Pat_ID], Data[Orig_Serv_Date]))
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Can't be a measure.
Must be a calculated column as there are about 10 other columns not shown that the # has to interact with.
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
User | Count |
---|---|
72 | |
67 | |
67 | |
42 | |
42 |
User | Count |
---|---|
46 | |
40 | |
28 | |
26 | |
25 |