Forum Discussion
MarkShnier__You
3 years agoQrew Legend
Try this formula
var date MyDate = [Natural Date field]; // insert your date field here
var text MMMM =
Case(Month($MyDate),
1,"JAN",
2,"FEB",
3,"MAR",
4,"APR",
5,"MAY",
6,"JUN",
7,"JUL",
8,"AUG",
9,"SEP",
10,"OCT",
11,"NOV",
12,"DEC");
var text DD = Right("0" & ToText(Day($MyDate)),2);
var text YYYY = ToText(Year($MyDate));
$DD & $MMMM & $YYYY
------------------------------
Mark Shnier (Your Quickbase Coach)
mark.shnier@gmail.com
------------------------------
var date MyDate = [Natural Date field]; // insert your date field here
var text MMMM =
Case(Month($MyDate),
1,"JAN",
2,"FEB",
3,"MAR",
4,"APR",
5,"MAY",
6,"JUN",
7,"JUL",
8,"AUG",
9,"SEP",
10,"OCT",
11,"NOV",
12,"DEC");
var text DD = Right("0" & ToText(Day($MyDate)),2);
var text YYYY = ToText(Year($MyDate));
$DD & $MMMM & $YYYY
------------------------------
Mark Shnier (Your Quickbase Coach)
mark.shnier@gmail.com
------------------------------
- SarahKuligowski3 years agoQrew MemberWorked like a charm Mark - many, many thanks!!
I have to say that you have solved so many of my problems through this forum, I'm a huge fan! Thank you!
------------------------------
Sarah Kuligowski
------------------------------
Related Content
- 3 months ago
- 7 months ago
- 3 years ago