Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
qlikviewaf
Creator
Creator

Amount format

Hi Guys,

i imported in qlik this excel below, but when the amount is with deciamls is not imported since my script has DecimalSep= ','.

I want to keep decimal sep with comma, but how then i can import in the right way this field ?

Thank you

Amount Format.PNG

Labels (1)
4 Replies
Anil_Babu_Samineni
MVP
MVP

You can try

This in script

Replace(EXTENDED_PRICE_AM, '.',',') as EXTENDED_PRICE_AM

OR In UI try like below

Num(Sum(EXTENDED_PRICE_AM), '#0.00')

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
divya_shinde
Partner - Contributor II
Partner - Contributor II

Hii,

Instead of changing DecimalSep in script you can try this

Find below screenshot you can give ', ' in format pattern

Qlik.png

its_anandrjs
Champion III
Champion III

Can you share your excel file.

antoniotiman
Master III
Master III

Hi Antonio,

try this

Num(Num#(Field,'#','.',','))

Regards,

Antonio