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 nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Hello everyone,
I'm getting nuts trying to solve the following.
We need to know how many people signed the form each month and how many people have we seen in total in that month.
For the first requeriment, I solved it using:
Signed People=
Solved! Go to Solution.
Hello @okusai3000
Try this:
Form Not Signed =
VAR _SignFormDateChek =
FILTER(dtPatient,
ISBLANK(dtPatient[[CON_VIS_CLI]) || dtPatient[[CON_VIS_CLI] > dtPatient[Vistit Date]
)
VAR _RowCount =
CALCULATE(DISTINCTCOUNT(dtPatient[PATIENT_ID]),_SignFormDateChek
)
RETURN
_RowCount
Cheers!
Vivek
If it helps, please mark it as a solution
Kudos would be a cherry on the top 🙂
https://www.vivran.in/
Connect on LinkedIn
Hello @okusai3000
Try this:
Form Not Signed =
VAR _SignFormDateChek =
FILTER(dtPatient,
ISBLANK(dtPatient[[CON_VIS_CLI]) || dtPatient[[CON_VIS_CLI] > dtPatient[Vistit Date]
)
VAR _RowCount =
CALCULATE(DISTINCTCOUNT(dtPatient[PATIENT_ID]),_SignFormDateChek
)
RETURN
_RowCount
Cheers!
Vivek
If it helps, please mark it as a solution
Kudos would be a cherry on the top 🙂
https://www.vivran.in/
Connect on LinkedIn
Sir, I simply LOVE YOU.
That was the solution.. Thank you so much.
Form Not Signed =
VAR _SignFormDateChek =
FILTER(dtPatient,
ISBLANK(dtPatient[[CON_VIS_CLI]) || dtPatient[[CON_VIS_CLI] >= dtPatient[Vistit Date]
)
VAR _RowCount =
CALCULATE(DISTINCTCOUNT(dtPatient[PATIENT_ID]),_SignFormDateChek
)
RETURN
_RowCount
Hi @okusai3000
Could you show a simple example and expected result to make me clear?
Best Regards
Maggie
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 22 | |
| 22 | |
| 18 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 63 | |
| 50 | |
| 46 | |
| 41 | |
| 39 |