Forum Discussion
naeljb
Helper I
8 years agodate format transformation into a new column
Hi, I have a date column format (month ,day, year) ranging from January 2015 to December 2017. I would like to create a new column such as January 2015 to May 2016 is recorded as 1, June 2016 t...
- 8 years ago
Hi,
This is my first proposal as a solution, pretty sure there are better answers and please don't laugh too hard (experts).
=if([Date]<=date(2016,05,31),1,if([Date]<=date(2017,01,31),2,3))
JP-Ronse
Helper II
8 years agoHi,
This is my first proposal as a solution, pretty sure there are better answers and please don't laugh too hard (experts).
=if([Date]<=date(2016,05,31),1,if([Date]<=date(2017,01,31),2,3))
- naeljb8 years ago
Helper I
Yup..... It works perfectly. Laughting at myself as it was so simple, an IF function. Thanks soooo much you JP-Ronse