Dears,
I have data in MyCalculationView like below,
IITEM VALUE X1 10 X2 25 X3 12 X4 40 X5 90 X6 55I want to create MyCalculationView to get X7, X8, X9, X10 and it's formula will be:
X7 = (X1 / X3
X8 = (X1 * X3)
X9 = (X2 / X5)
X10 = (X6 / X3)
and I've two solutions to get my desired resullt
but I believe neither of two solutions is best practice.
So what is the right thing I should do.
Regards