Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi there - I have three fields I am working with:
Field | Example Date |
---|---|
Date | 2/4/2014 |
Week Type | Off |
Week Number | 1 |
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!
Date(Date,'MMM D')&'-'&[Week Type]&'-'&[Week Number]
Date(Date,'MMM D')&'-'&[Week Type]&'-'&[Week Number]
Try this:
Date(Date, 'MMM D')&'-'&[Week Type]&'-'&[Week Number]
Hope this helps
Month([Date])&' '& Day([Date]) &'-'&[Week Type]&'-'&[Week Number]
Thank you!