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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
matancha
Creator
Creator

Number Format

Hello All.

I have field with 2 numbers: 1.5625 , 3

I want to display them (Straight Table atc...) like: 1.56, 3 (And NOT 3.00, I try - '#,##0.##' )

How can I do that? Which format I need?

Thks for your help -

Matan

1 Solution

Accepted Solutions
Jason_Michaelides
Partner - Master II
Partner - Master II

Oops - missed a parenthesis:

Num(Value,(If(Value=Floor(Value),'#,##0','#,##0.00'))

Jason

View solution in original post

4 Replies
Jason_Michaelides
Partner - Master II
Partner - Master II

Hmmm,

Try Num(Value,If(Value=Floor(Value),'#,##0','#,##0.00'))

Hope this helps,

Jason

Jason_Michaelides
Partner - Master II
Partner - Master II

Oops - missed a parenthesis:

Num(Value,(If(Value=Floor(Value),'#,##0','#,##0.00'))

Jason

matancha
Creator
Creator
Author

Thnks Jason,

It's Work.

But Maybe there a way only with format pattern (without If)?

Jason_Michaelides
Partner - Master II
Partner - Master II

Not that I can think of I'm afraid.