Forum Discussion
smpa01
2 years agoCommunity Champion
Multiple Intermediate step
ImkeF came across this awesome link and I was wondering if there is a way to refer to multiple/any intermediate steps.
E.g.
// dims table
let
dimOne = #table({"ky", "valOne"}, {{"...
- 2 years ago
Try changing your dims table to this:
let dimOne = #table({"ky", "valOne"}, {{"ky1", 90.3}, {"ky2", 89.5}}), dimTwo = #table({"ky", "valTwo"}, {{"ky1", 1}, {"ky2", 2}}), metaStep = dimTwo meta[ref1=dimOne, ref2=dimTwo] in metaStep
AlexisOlson
2 years agoSuper User
Try changing your dims table to this:
let
dimOne = #table({"ky", "valOne"}, {{"ky1", 90.3}, {"ky2", 89.5}}),
dimTwo = #table({"ky", "valTwo"}, {{"ky1", 1}, {"ky2", 2}}),
metaStep = dimTwo meta[ref1=dimOne, ref2=dimTwo]
in
metaStepsmpa01
2 years agoCommunity Champion
AlexisOlson This is smooth and elegant !!!