-
Re: How do I create a rate with 1 row of data then filter it by unique cells of another row?
For your percentage of patients admitted via observation, you can use a beast mode like the following: SUM(case when 'Enc status' = "Observation" then 1 else 0 end)/COUNT('Enc status') This…2