I am using Monday Forms as a “Change Request” for values in other boards.
Is there a formula I can use that takes a field from the submitted form and looks for a match across other boards, and if it finds and exact match, returns a value into the the main table value of the submitted forms?
Stuck - I can’t find a way in formulas to lookup or search other boards.
Explanation: Let’s say the form imports data into the Location column of the current board.
The LOOKUP function takes 3 parameters.
The value to search for (here the {Location} column imported by the form).
The values to look into: {Board2Items.Location} returns a list of all values of the Location column in Board2.
The list to return a value from: {Board2Items.Country} returns a list of all values of the Country column in Board2.
In the above example, the LOOKUP function looks for the imported location {Location} in all the locations of Board2 {Board2Items.Location} and, if it finds it, it returns the corresponding Country in the list of countries of Board2 {Board2Items.Country} then assigns it to the Country column of the imported item ({Country}=)