Hello guys, I’m migrating from Notion to Coda and I’m trying to implement a formula where I get the month of one column and if it is January, insert in the relation column the respective value.
I.E: I have a column called “Lanc” and it is date format, on the column called “Balance” I added a formula where I validate the “Lanc” column month and if it is “January” insert the row January from “Balance” table.
Regarding the first part of your if() formula, there are 2 errors:
You are referencing the whole Lanc column: Click on the chip to see more details about what does it reference. You should use thisRow.Lanc instead.
Month() returns a number, not a string, so instead of "01" you should just write 1
Not sure what you are trying to achieve with the rest of the formula, but if you want to retrieve an object from another table, you need to use the filter() formula.