Hi all,
I'm an extremely new user and was hoping for a bit of help. I've two really simple calculated columns, one for "Division" and another for "Company Name". My data is an aged debtor report with a company code from SAP. I've also loaded a mapping table that maps company code to division and company name.
My lookups are as follows:
Division = LOOKUPVALUE(Mapping[Division],Mapping[Company],'SAP data'[Company Code])
Company = LOOKUPVALUE(Mapping[Company],Mapping[Company Code],'SAP data'[Company Code])
Which ever one I entter first works fine, but the second one falls over and claims a "circular dependency has been detected: SAP data[Division], SAP data[Company], SAP data[Division]". This is driving me crazy, I can't see how this is circular, one column looks up company code and provides mapping A, the next column looks up company code and provides mapping B.
Any help appreciated,