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

Convert a date into the numberic format (41000 number)

Hi,

Probably a simple one, but I'm trying to create a unique reference on a table. (Tour Code & Departure Date concatenation) so that it can be used in an excel document.

When I do my formula =[Tour Code] & [Departure Date] , I end up getting a result of "JAPAN01/08/2018". How do i change my expression to get a result like "JAPAN43313" ??

Thanks

1 Solution

Accepted Solutions
tresesco
MVP
MVP

Try like:

=[Tour Code] & Num(Date#([Departure Date] , 'DD/MM/YYYY'))

View solution in original post

2 Replies
tresesco
MVP
MVP

Try like:

=[Tour Code] & Num(Date#([Departure Date] , 'DD/MM/YYYY'))

cmccafferty
Contributor III
Contributor III
Author

Amazing

Thank you so much!!