Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

P&L Table Total

how can i add a total row at the bottom of a P&L pivot table, please help

Control_Alt_Delete_2-1604436458193.png

 

 

 

1 Solution

Accepted Solutions
Kushal_Chawda

@Anonymous  Create a inline table in script like below

LOAD * inline [
Dim
1
2 ];

 

Now, in pivot table replace your Type Dimension with below

=Pick(Dim,Type,'Total')

 

View solution in original post

1 Reply
Kushal_Chawda

@Anonymous  Create a inline table in script like below

LOAD * inline [
Dim
1
2 ];

 

Now, in pivot table replace your Type Dimension with below

=Pick(Dim,Type,'Total')