Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Send to Excel - Data Format Issue

Hi,

I have pivot table with some integer value, percentage (%) value and date. When i press the "Send to Excel", all the values are exported as number. Herewith i have attached the images for your reference.

Pivot Table

error loading image

Exported Data

error loading image

Regards

Rajesh



1 Solution

Accepted Solutions
Not applicable
Author

Hi Rajesh,

This may be the problem, when you try to format the expression with two or more formatings.

One solution would be for this is enclosing the expression with text() function.


text(if(Product = 'A',num(Sum (Sales),'##.00%'),num(Sum (Sales),'##.00')))


Check the attachment as well.

Hope this may help you.

-Peterson

View solution in original post

2 Replies
Not applicable
Author

Hi Rajesh,

This may be the problem, when you try to format the expression with two or more formatings.

One solution would be for this is enclosing the expression with text() function.


text(if(Product = 'A',num(Sum (Sales),'##.00%'),num(Sum (Sales),'##.00')))


Check the attachment as well.

Hope this may help you.

-Peterson

Not applicable
Author

Thanks Kelvin.