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

Join in Pivot Table

Hi All

I am trying to use outer join but output was not accurate when I try to show it in Pivot Table,it was working fine when output shown in Table Box.Anyone please help me in this issue.

My sample data looks like:

Product:

Load * Inline [

ProductID,Product

1,aaa

2,bbb

3,ccc ];

Outer Join(Product)

Sales:

LOAD * Inline [

ProductID,Product,SalesAmount

1,aaa,10

2,bbb,20

4,ddd,40

5,eee,50 ];

Sample Output(Pivot Table):

Product IDProductSalesAmountSum(SalesAmount)
1aaa1010
2bbb2020
4ddd4040
5eee5050

Output Table Box:

Product IDProductSalesAmount
1aaa10
2bbb20
3ccc-
4ddd40
5eee50
1 Solution

Accepted Solutions
sunny_talwar

I think you need to uncheck 'Suppress Zero Values' on the presentation tab of chart properties

View solution in original post

3 Replies
sunny_talwar

I think you need to uncheck 'Suppress Zero Values' on the presentation tab of chart properties

sunny_talwar

Capture.PNG

Anonymous
Not applicable
Author

Thank you Sunny