Hello together,
I'm trying hardly to build a lookup, which retrieves a category value out of a cube to maintaine these categories into a main cube.
BUT: I don't provide a key value like 98.00 = Category C, 99.00 = Category B and 100.00 = Category A, moreover it should work like this:
0 ... 98.00 = Category C,
98.01 ... 99.00 = Category B
and 99.01 ... 100.00 = Category A
If I write a palo.data(...) rule, I would refer to the value key like ...,!'Value',... resp. ...,"99.00",... which equals in fact a =, but I need something like
palo.data(SERVER,DB,!'Dim1',!'Dim2',range(98.01..99.00),!'Dim4') or palo.data(SERVER,DB,!'Dim1',!'Dim2',!'Dim3' between "98.01" and "99.00",!'Dim4')
I know, that rule functions like this don't exist, but did somebody solve a similar problem without a large number of nested IF()-Statements?
Maybe concerning a versioning need like >=Date1 and <Date2 or similar?
I could do the nested if()-solution, but I have 200 of such categories.
The typing of the rule might be just much work, but the runtime performance might be poor with that...
Any hint is highly appreciated.
Best regards,
Stefan