Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am new in QlikView. Yet I have experience in R using the tidyverse library.
I have this code
temp_B:
LOAD
dimension_1,
dimension_2,
dimension_1 + dimension_2 as dimension_3,
dimension _1 * dimension_3
RESIDENT temp_A;
The problem arises when I try to use dimension_3 to multiply dimension_1.
I have seen other codes where people usually do this:
dimension _1 *(dimension _1 + dimension _2)
However, when calculations are too big I would rather use my way.
How do I achieve this?
Do it in a preceding load
temp_B: LOAD *, dimension _1 * dimension_3; LOAD dimension_1, dimension_2, dimension_1 + dimension_2 as dimension_3 RESIDENT temp_A;
Do it in a preceding load
temp_B: LOAD *, dimension _1 * dimension_3; LOAD dimension_1, dimension_2, dimension_1 + dimension_2 as dimension_3 RESIDENT temp_A;
THANK YOU!