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: 
Not applicable

Concatenate Date + String

Hi there - I have three fields I am working with:

FieldExample Date
Date2/4/2014
Week TypeOff
Week Number1

I'd like to show all three together like this: "Feb 4-Off-1"

When I use [Date]&'-'&[Week Type]&'-'&[Week Number] I get "41674-Off-1"

How do I keep or change the date formula to display properly?

Thanks!

1 Solution

Accepted Solutions
MarcoWedel

Date(Date,'MMM D')&'-'&[Week Type]&'-'&[Week Number]

View solution in original post

4 Replies
MarcoWedel

Date(Date,'MMM D')&'-'&[Week Type]&'-'&[Week Number]

sunny_talwar

Try this:

Date(Date, 'MMM D')&'-'&[Week Type]&'-'&[Week Number]

Anonymous
Not applicable
Author

Hope this helps


Month([Date])&'  '& Day([Date]) &'-'&[Week Type]&'-'&[Week Number]

Not applicable
Author

Thank you!