ordendelfai
Technical User
BO 5.1.7
I am just starting to use BO, and I have a report that I want to only display two dimensions and a custom variable that sums on <Total Eligible Count> only when the <Mbr Relationship Code> = "C" (the MBR Relationship Code is not in the table)
In the table:
1. <Calendar Year+Month>
2. <Total Eligible Count>
3. <MyCustomVariable>
Not in the table:
4. <Mbr Relationship Code>
The below custom variable works as long as the <Mbr Relationship Code> is in it, but when I take it out, I get a #Multivalue error. I have tweaked and played with as much as I can, and sometimes I can get a #Computation error. If you have any advice how to make it work, I would really appreciate it!
~Joel
As common courtesy and to help other members who might find your thread helpful in the future, please respond if the advice given resolved your issue.
I am just starting to use BO, and I have a report that I want to only display two dimensions and a custom variable that sums on <Total Eligible Count> only when the <Mbr Relationship Code> = "C" (the MBR Relationship Code is not in the table)
In the table:
1. <Calendar Year+Month>
2. <Total Eligible Count>
3. <MyCustomVariable>
Not in the table:
4. <Mbr Relationship Code>
The below custom variable works as long as the <Mbr Relationship Code> is in it, but when I take it out, I get a #Multivalue error. I have tweaked and played with as much as I can, and sometimes I can get a #Computation error. If you have any advice how to make it work, I would really appreciate it!
Code:
Custom Variable:
=If(<Mbr Relationship Code> In(<Mbr Relationship Code> , <Calendar Year+Month>) In <Mbr Relationship Code> = ("C")) Then Sum(<Total Eligible Count> In(<Mbr Relationship Code> , <Calendar Year+Month>) In <Mbr Relationship Code>)
~Joel
As common courtesy and to help other members who might find your thread helpful in the future, please respond if the advice given resolved your issue.