Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

set analysis expression

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

1 Solution

Accepted Solutions
sunny_talwar

May be this

Dimension

Name

Expressions

Value

Only(TOTAL {<Name = {'B'}>} Value)

Column(1)  - Column(2)

View solution in original post

2 Replies
sunny_talwar

May be this

Dimension

Name

Expressions

Value

Only(TOTAL {<Name = {'B'}>} Value)

Column(1)  - Column(2)

Not applicable
Author

Thanks,works!