Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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