Hi Haresh,
Thanks for asking this question. I can think of two ways of achieving this:
- Use the native export functionality to export the data from Reltio in a CSV format. Load that CSV file into Excel and generate the report in the format you desire.
- Use Reltio analytics which transfers the data from Reltio tenant in real-time to GBQ relational tables. You can query the GBQ tables to generate the report and optionally connect it to various BI tools.
See below screenshot where I generated the report in the format you asked from my sandbox GBQ environment:

The report was generated using the below SQL query :
select
a.id as MDM_ID,
a.crosswalk_count,
b.source as crosswalk,
b.source_cw_count as breakdown
from
(
select
id,
count(id) as crosswalk_count
from
`customer - facing.views_riq_dw_gus_training_<tenant>.entity_Organization`,
unnest(crosswalks) as cw
group by
id
)
a
inner join
(
SELECT
id,
cw.source,
count(id) as source_cw_count
FROM
`customer - facing.views_riq_dw_gus_training_<tenant>.entity_Organization`,
unnest(crosswalks) as cw
group by
id,
cw.source
)
b
on a.id = b.id
order by
a.id limit 100;
Read more about Reltio Analytics
herePlease let me know if you have any follow up questions.
Thanks,
Snehil