Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
qlikconsultant
Creator III
Creator III

Trouble with a pivote table

I have three attributes:

orderyear,

ordermonth

and amount

I have created a pivote table:

I put orderyear and ordermonth in the dimension and the expression is sum(amount).

But i get object shows no data.

I checked the data with a table box.

So where is my mistake?

1 Solution

Accepted Solutions
GabrielAraya
Employee
Employee

in the script try the follow for the amount field

Load
:
Replace(Amount,'.',',')          as Amount

The issue here is that the point character  is not the decmal sep.

View solution in original post

9 Replies
ecolomer
Master II
Master II

try with RangeSum(amount)

¿are you sure about the data?

GabrielAraya
Employee
Employee

Try with a table object and your tree fields .. if the amount values are set left side .. means that for QV are text.

BR

qlikconsultant
Creator III
Creator III
Author

I think you are right. How can I fix it?

qlikconsultant
Creator III
Creator III
Author

Yes they data is there and unfortunly rangesum does not work.

GabrielAraya
Employee
Employee

Can you give us a print screen of your table object ?

qlikconsultant
Creator III
Creator III
Author

Hope this is enough.

GabrielAraya
Employee
Employee

in the script try the follow for the amount field

Load
:
Replace(Amount,'.',',')          as Amount

The issue here is that the point character  is not the decmal sep.

ecolomer
Master II
Master II

try to punt in the pivot table one more expression with a constant value  ... example 1 and see if the values show

qlikconsultant
Creator III
Creator III
Author

Thanks Gabriel your solution worked.