Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello I am trying to sum total encounter charges for distinct ENCID's.
I tired the expression below but it gives me 0.00
Sum({<ENCID={'Distinct ENCID'}>}[ENCID Total Charges])
Thanks in advance.
Did you forget to add DISTINCT?
Sum (Aggr (Sum(DISTINCT [ENCID Total Charges]), ENCID))
Try this:
Sum (Aggr (Sum([ENCID Total Charges]), ENCID))
Did you forget to add DISTINCT?
Sum (Aggr (Sum(DISTINCT [ENCID Total Charges]), ENCID))
My fault stalwar1. You're right!
Thank you! It works.