Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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), '##,##,####'),
Try,
NUM(SUM({<PI_ID={'DATE'}>} VALUE), '##-##-####','.','-'),
Hi that didn't work
Seems to work for me. If you want a leading zero:
=NUM( 5142015, '00-00-0000','.','-')
I see now it is working. thank you!