Trying to get a list of RICs for all companies within a TRBC Industry Group for a specific year?

Options

The closest I have got is:

RIC = rdp.search(
view = rdp.SearchViews.Organisations,
filter = f"RCSTRBC2012Name eq 'Basic materials\\Mineral resources' and Revenue ge 10000000 and FinancialYear eq 2009",
select = "PrimaryRIC2012", top = 10000)

How do I get this search to work and only pull RICs from 2009? Thanks

Best Answer

Answers