To answer your second question, try
DATETIME_FORMAT(DATETIME_PARSE(MonthNum&'','M'),'MMMM')
I can’t imagine the formula you cite could come anywhere close to maxing out Airtable’s maximum formula length or even a maximum line length (if such a thing exists); I suspect you’ll shortly receive a request from someone like @Kasra asking for specifics of your implementation. In the meantime, Airtable will accept formulas formatted in a more-traditional style,such as
DATETIME_FORMAT(
DATETIME_PARSE(
MonthNum&'','M'
),
'MMMM'
)
You can copy-and-paste either version of that formula into your base.
To answer your second question, try
DATETIME_FORMAT(DATETIME_PARSE(MonthNum&'','M'),'MMMM')
I can’t imagine the formula you cite could come anywhere close to maxing out Airtable’s maximum formula length or even a maximum line length (if such a thing exists); I suspect you’ll shortly receive a request from someone like @Kasra asking for specifics of your implementation. In the meantime, Airtable will accept formulas formatted in a more-traditional style,such as
DATETIME_FORMAT(
DATETIME_PARSE(
MonthNum&'','M'
),
'MMMM'
)
You can copy-and-paste either version of that formula into your base.
Perfect, thank you @W_Vann_Hall! I did not know that DATETIME_FORMAT
could return a non-numeric month like that.
Perfect, thank you @W_Vann_Hall! I did not know that DATETIME_FORMAT
could return a non-numeric month like that.
DATETIME_FORMAT()
and DATETIME_PARSE()
are capable of all sorts of neat stuff.
My latest fun hack has been to use the 'X'
format specifier to calculate a ‘days since Unix Epoch’ identifier, providing a unique numeric ID for any date between January 1, 1970, and January 19, 2038. I can then use this ‘days since epoch’ value to access data from other records to use in calculations in the current record to do things like create a running balance, track the difference in price from that of the previous day, display a week’s worth of data in a sliding window, and the like.
DATETIME_FORMAT()
and DATETIME_PARSE()
are capable of all sorts of neat stuff.
My latest fun hack has been to use the 'X'
format specifier to calculate a ‘days since Unix Epoch’ identifier, providing a unique numeric ID for any date between January 1, 1970, and January 19, 2038. I can then use this ‘days since epoch’ value to access data from other records to use in calculations in the current record to do things like create a running balance, track the difference in price from that of the previous day, display a week’s worth of data in a sliding window, and the like.
Sir, you are a scholar and a gentleman. I will be poring over the “Show and Tell” forums this weekend! New to Airtable, but boy do I love it.
To answer your second question, try
DATETIME_FORMAT(DATETIME_PARSE(MonthNum&'','M'),'MMMM')
I can’t imagine the formula you cite could come anywhere close to maxing out Airtable’s maximum formula length or even a maximum line length (if such a thing exists); I suspect you’ll shortly receive a request from someone like @Kasra asking for specifics of your implementation. In the meantime, Airtable will accept formulas formatted in a more-traditional style,such as
DATETIME_FORMAT(
DATETIME_PARSE(
MonthNum&'','M'
),
'MMMM'
)
You can copy-and-paste either version of that formula into your base.
I have the same problem with my formular. The last part of the response text (multiple select) does not appear, can not be read. This formular is not hosted in any web. What can I do?
Thank you
Lidia