Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello
There is simple dataset
Data:
LOAD * INLINE [
Name, Value
A, 10
B, 20
C, 30
];
Need to create stright table with such results
The problem is to write the expression for “Value ProductB”
It is just the Value of Prosuct B
Product | Value | Value ProductB | Comparison |
A | 10 | 20 | -10 |
B | 20 | 20 | 0 |
C | 30 | 20 | 10 |
Let me know if you know how
May be this
Dimension
Name
Expressions
Value
Only(TOTAL {<Name = {'B'}>} Value)
Column(1) - Column(2)
May be this
Dimension
Name
Expressions
Value
Only(TOTAL {<Name = {'B'}>} Value)
Column(1) - Column(2)
Thanks,works!