Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I'm looking at some set analysis and have the following -
=Count( { < [Specialty Code] = { '700' } > } [Bed Days.Occupied])
I want to add a date criteria to is so it only looks at yesterdays date. My date field is called "Date"
Think I've done it
=Sum( { <[Specialty Code] = { '700' }, [Date] = {"$(=Date(Today() -1))"}, InfoCalDay, InfoCalMonth, InfoCalYear>} [Available Beds.Beds Available])-
Count( { <[Specialty Code] = { '700' }, [Date] = {"$(=Date(Today() -1))"}, InfoCalDay, InfoCalMonth, InfoCalYear>} [Bed Days.Occupied])
Looks good to me if it gives you what you want
Why is this not working?
=Count({<[Specialty Code] = { '700' },[Outcome] = { 'Attended' }, Date = {"$(=Date (Today() -1))"}, InfoCalDay, InfoCalMonth, InfoCalYear>} [refrl_refno])
try date format to match the Date field , something like below
Date = {"$(=Date(Today() -1,'MM/DD/YYYY'))"}