Jump to content

Is there way like summary table use custom expression


mike weng

Recommended Posts

I want to do some calculationper column like summary table, but need to use custom expression,

for example, I have a table like below "Raw data table"and then want to get below "Result table".

Raw data table:

 

 

 

A

B

C

D

 

 

1

2

3

4

 

 

1

2

3

4

 

 

1

2

3

4

 

 

1

2

3

4

 

 

1

2

3

4

 

 

 

Result table:

 

 

 

Column name

Sum

Target

 

 

A

sum(A)

sum(A)*1.05

 

 

B

sum(B)

sum(B)*1.05

 

 

C

sum©

sum©*1.05

 

 

D

sum(D)

sum(D)*1.05

Link to comment
Share on other sites

It is not feasible to add custom expressions to summary table. You can create other columns and multiply A*1.05. Then add that column in summary table so sum will give you the expected result.

Other way would be tounpivot the data table so A,B,C,D columns will become rows and that can be easily fed to cross table. If you do not want to unpivot the data table,you will need to create custom expression for each column in cross table.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...