Forum Discussion
norbi
8 years agoHelper I
Annual percentage split on different items and split value accordingly
Hi, I would truly appreciate some help with the following challenge. I have a total val for a year and the percentage split over the period. I would like to combine these where Table_1 would have th...
Vvelarde
8 years agoCommunity Champion
Hi:
Try with;
Modeling - New Table
Cruce = CROSSJOIN(Table1,Table2)
After that created a calculated column with
NVal = Cruce[Val]*Cruce[%_Trend]
Regards
Victor