I tried doing that, but that got REALLY convoluted really quickly.
A = (1) > B.1( 2, 3 )
A = (2) > B.2( 1, 3 )
A = (3) > B.3( 1, 2 )
Easy enough right? But then C got a ton of fields, because you can't do "Conditional if (this) and (that) AS WELL AS conditional (thing) and (stuff). It's either conditional for all or any, not groups of things, so I ended up with a MESS of C's.
[A = 1] + [B.1 = 2] > (C = 3)
[A = 2] + [B.2 = 1] > (C = 3)
[A = 3] + [B.3 = 1] > (C = 3)
[A = 3] + [B.3 = 2] > (C = 3)
And all of that is just for C = 3. This got way to messy.
Posted 12 years ago on Friday February 10, 2012 |
Permalink