Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi everyone,
I am filtering a table column by the following:
=if(Calendar ='ReferralDate' and SuicideReferralFlagName='Yes' and ReferralEpisode_SuicideReferral_BinaryFlag=1 and SCNoShowId=2 and SCClientParticipationIndicatorId=1, ReferralNumber)
I only want to count the referral number if SCNoShowId=2 and SCClientParticipationIndicatorId=1 on the first service contact date, so something like this needs to be added to the set analysis but I can't get it working:
=Date(Min([SCServiceContactDate],ReferralNumber))
Thank you
Try this.
Count({<SCServiceContactDate={'$(Date(=Min([SCServiceContactDate])))'},SCNoShowId={2},SCClientParticipationIndicatorId={1}>} ReferralNumber)
Try this.
Count({<SCServiceContactDate={'$(Date(=Min([SCServiceContactDate])))'},SCNoShowId={2},SCClientParticipationIndicatorId={1}>} ReferralNumber)
Perfect, thank you!