I have three data providers with the following objects and measures-
Data Provider #1 from Universe A
| Year | Fund | Amount |
|---|---|---|
| 2015 | ABC | 1000 |
| 2015 | BCD | 2000 |
| 2015 | CDE | 3000 |
Data Provider #2 from Universe B
| Year | Fund | Cumulative Amount |
|---|---|---|
| 2014 | ABC | 5000 |
| 2014 | DEF | 3000 |
| 2015 | BCD | 3000 |
| 2015 | CDE | 4000 |
| 2015 | DEF | 5000 |
Data Provider #3 from Universe C
| Year | Participatory Fund |
|---|---|
| 2014 | ABC |
| 2015 | BCD |
| 2015 | DEF |
I have merged all three Year values on the report. I have merged Fund values from data provider #1 and #2.
The report needs to show the following-
| Fund | Participatory Fund Indicator (Variable) |
|---|---|
| ABC | Yes |
| BCD | Yes |
| CDE | No |
| DEF | Yes |
However, the Variable does not show anything. If I merge Participatory Fund with the two other Funds, then, the Variable shows "Yes" for all the values.
What should be the correct variable syntax to get this working? Please help.