gerrycastellino
Creator III
2017-05-08
02:28 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
question on grabbing a date in a text box
I have a list of dates as below, with 4/30/2017 being the most recent/maximum date.
How do I grab in a text box a comma separated list of dates going back 12 months ?
- Tags:
- app dev
361 Views
1 Solution
Accepted Solutions
tresesco
MVP
2017-05-08
02:40 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Try expression like:
=Concat( Distinct {<Record_Date={'>$(=Date(AddMonths(Max(Record_Date),-12)))'}>} Record_Date , ',')
328 Views
1 Reply
tresesco
MVP
2017-05-08
02:40 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Try expression like:
=Concat( Distinct {<Record_Date={'>$(=Date(AddMonths(Max(Record_Date),-12)))'}>} Record_Date , ',')
329 Views