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: 
ShaBeeN
Contributor III
Contributor III

Decimal in Straight Tables

Hi All,

I have a straight table with the following values. I want to assign decimal values so it'll be much easier to read.

For example, first row should be 3,518,250 and 148,877,412.29

Is this possible in Straight Tables?

I used =num(income_multiplier,'0,00') but for values less 1,000, incorrect data is getting populated. If the original value is 346.9, after the conversion, it's shown as 0,347

ShaBeeN_0-1637549505868.png

 

Labels (1)
1 Solution

Accepted Solutions
abhijitnalekar
Specialist II
Specialist II

Hi @ShaBeeN ,

 

Please try

num(income_multiplier,'#,##0')

Regards,
Abhijit
keep Qliking...
Help users find answers! Don't forget to mark a solution that worked for you!

View solution in original post

6 Replies
abhijitnalekar
Specialist II
Specialist II

Hi @ShaBeeN,

Try number formating from property panel.

 

abhijitnalekar_0-1637555060254.png

 

Regards,
Abhijit
keep Qliking...
Help users find answers! Don't forget to mark a solution that worked for you!
ShaBeeN
Contributor III
Contributor III
Author

It's not available

ShaBeeN_1-1637556064658.png

 

 

abhijitnalekar
Specialist II
Specialist II

Hi @ShaBeeN ,

In that case, your field's data type must be not a number?

Please change your field datatype to number then you can see the property.

You can change the datatype like this Num#(fieldsname) as fieldname

Regards,
Abhijit
keep Qliking...
Help users find answers! Don't forget to mark a solution that worked for you!
ShaBeeN
Contributor III
Contributor III
Author

I used =num(income_multiplier,'0,00') but for values less 1,000, incorrect data is getting populated. If the original value is 346.9, after the conversion, it's shown as 0,347

abhijitnalekar
Specialist II
Specialist II

Hi @ShaBeeN ,

 

Please try

num(income_multiplier,'#,##0')

Regards,
Abhijit
keep Qliking...
Help users find answers! Don't forget to mark a solution that worked for you!
ShaBeeN
Contributor III
Contributor III
Author

Thank you so much. It worked