Hi All!
Been thinking about this for a while, but cannot wrap my head around it! Looking for a bit of help.
I have multiple tables with lots of lookups all connected together, but am struggling to get a same table lookup to work. Thinking maybe scripts or automations?
My table is as below:
I am trying to accomplish the following:
When the current row is updated to ‘Existing Supply Rating’ it (ie the automagical widget or script) searches for similar rows and returns the file associated with the most recent similar matching row. It then copies the URL of the file into this record.
Kind of a fuzzy search which then returns and inserts a file for my current row.
if ({Existing Supply Rating}=True)
return Attachment into this ‘cell’
where {Site Type} = this {site type}
and {in/Out} = this {In/Out}
and {Proposed Config} = this {Proposed Config}
and {Existing Supply Location} = this {Existing Supply Location}
and {Existing Mains Supply} = this {Existing Mains Supply}
and {Existing Supply Rating} = this {Existing Supply Rating}
and {creation date} = most recent
The above logic is kind of what I am thinking. There is no fuzzy-ness, as it has to be exact, but functions like a fuzzy search does.
Any pointers would help.