I have one of three values calculated at the detail level for each record using a function (CalcPriority)- ("A", "B", "C").
--
I have created a group that needs to calculate higher level priority in function (GroupPriority) based on the following:
if there is at least one CalcPriority=A from details, then GroupPriority=GroupA.
if there is no CalcPriority=A from details *and* there is at least one CalcPriority=B from details, then GroupPriority=GroupB.
if there is no CalcPriority=A from details *and* there is no CalcPriority=B from details, then GroupPriority=GroupC.
---
I want to use GroupPriority in a bar chart as OnChangeOf criteria.
I am having trouble coding GroupPriority to do this.
Help!
--
I have created a group that needs to calculate higher level priority in function (GroupPriority) based on the following:
if there is at least one CalcPriority=A from details, then GroupPriority=GroupA.
if there is no CalcPriority=A from details *and* there is at least one CalcPriority=B from details, then GroupPriority=GroupB.
if there is no CalcPriority=A from details *and* there is no CalcPriority=B from details, then GroupPriority=GroupC.
---
I want to use GroupPriority in a bar chart as OnChangeOf criteria.
I am having trouble coding GroupPriority to do this.
Help!