Skip to main content

This is pretty simple problem, but I can’t figure out how to get this to work on Airtable. What I want to do is program a column with a function that converts information from a date column to another column in Month word form. Using Month () I can get it to work in Numerical form (i.e ‘12/14/89’ becomes ‘12’) But I can’t find a way to make it say ‘December’.

Use DATETIME_FORMAT(Your_Date, ‘MMMM’)


See Supported format specifiers for DATETIME_FORMAT.


You’re looking for DATETIME_FORMAT() with the appropriate format specifier. For instance


DATETIME_FORMAT({Date},'MMMM')

will get you the month name.


Take a look at the specifier list; you can get it to do all sorts of things…


Use DATETIME_FORMAT(Your_Date, ‘MMMM’)


See Supported format specifiers for DATETIME_FORMAT.



Yes! Thanks so much!


I am trying to pull a value from a field of a record if the date field is the current month. Does anyone know of a formula that does this


@Joshua_Owen - I’m guessing you want to check that the date field matches the current month and year, not just the month. If so, you could use the formula:


IF(DATETIME_FORMAT(Date, 'MM/YYYY') = DATETIME_FORMAT(NOW(), 'MM/YYYY'), '✅', '❌')



(but you can easily mod this if you do just want to check that the month is the current month - just remove the YYYY from both sides)


JB


Reply