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

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Format Number Question

Hello - I'm unable to format a number in to the this layout: 05-14-2015

The below format is not working '##,##,####' as it displays the value as : 05,14,2015

Can anyone help?

 

NUM(SUM({<PI_ID={'DATE'}>} VALUE), '##,##,####'),

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Try,

NUM(SUM({<PI_ID={'DATE'}>} VALUE), '##-##-####','.','-'),

View solution in original post

4 Replies
swuehl
MVP
MVP

Try,

NUM(SUM({<PI_ID={'DATE'}>} VALUE), '##-##-####','.','-'),

Not applicable
Author

Hi that didn't work

swuehl
MVP
MVP

Seems to work for me. If you want a leading zero:

=NUM( 5142015, '00-00-0000','.','-')

Not applicable
Author

I see now it is working. thank you!