...g TR.F.Revenue
Hi,
I get the same result using
=@TR("CGC.AX","TR.TotalAssets(Scale=6)","SDate=2020-01-01 EDate=2019-01-01,Frq=FY")
and
ek.get_data("CGC.AX", 'TR.TotAssets(Scale=6)', {'SDate': '2020-01-01', 'EDate': '2019-01-01', 'FRQ': 'FY'})[0]
Instrument Total Assets
0 CGC.AX 936.959
but, a different result using TR.F.TotAssets
ek.get_data("CGC.AX", 'TR.F.TotAssets(Scale=6)', {'SDate': '2020-01-01', 'EDate': '2019-01-01', 'FRQ': 'FY'})[0]
Instrument Total Assets
0 CGC.AX <NA>
Should I be using TR.F.TotAssets or TR.TotAssets, I see that your examples use the former.