Circular Reference

Post Reply
User avatar
kielmc
Posts: 22
Joined: Tue Jun 24, 2008 6:17 pm
OLAP Product: TM1
Version: 10.2.2 FP4
Excel Version: 2013
Location: Birmingham, AL

Circular Reference

Post by kielmc »

Hello everyone!

I guess I'm dreaming, but I could swear that I've been able to do this before, using STET would to avoid a circular reference...

I'd like to be able to enter either hours or dollars and and have the other calculate...I've simplified the rules as an example below. Is there a way to do this without creating a third measure?

['Dollars']=IF(['Hours']=0,STET, 1);

['Hours']=IF(['Dollars']=0,STET, 1);

Thanks!
User avatar
Olivier
Community Contributor
Posts: 159
Joined: Thu Jun 26, 2008 5:46 am
OLAP Product: TM1
Version: Tm1 10.2.2fp4 -> 2.09
Excel Version: Excel 2013 - 2019
Location: Sydney

Re: Circular Reference

Post by Olivier »

Hi there,

I think you need another dimension reference to do that :

['Destination','Dollars']=IF(['Source','Hours']=0,STET, 1);
['Destination','Hours']=IF(['Source','Dollars']=0,STET, 1);

FEEDERS;

['Source','Hours']=>['Destination','Dollars'];
['Source','Dollars']=>['Destination','Hours'];


Any other suggestions from the gurus ?

Olivier
HTH
Olivier
User avatar
jim wood
Site Admin
Posts: 3951
Joined: Wed May 14, 2008 1:51 pm
OLAP Product: TM1
Version: PA 2.0.7
Excel Version: Office 365
Location: 37 East 18th Street New York
Contact:

Re: Circular Reference

Post by jim wood »

Have you tried using continue instead of stet?
Struggling through the quagmire of life to reach the other side of who knows where.
Shop at Amazon
Jimbo PC Builds on YouTube
OS: Mac OS 11 PA Version: 2.0.7
Post Reply