Automatic input Relation Value

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.

Is there a way to do something like that? I would like it to be fully automated

Hi Daniel,

Welcome to the community!

We could help you more if you share a dummy doc

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.

Filter formula | Formulas 101 - YouTube

Let me know if this helped,

Pablo

1 Like

Thanks Pablo!! This helped me a lot and I could solve my problem!

Kind regards!

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.