Hi there!
I would add two rollup fields on Table 2, that both point at your field on Table 1 which denotes whether the training is formal or informal. Then use the following two functions (one for each field)
IF(FIND("Formal", ARRAYJOIN(ARRAYUNIQUE(values))), "Yes", "No")
and
IF(FIND("Informal", ARRAYJOIN(ARRAYUNIQUE(values))), "Yes", "No")
IMPORTANT: I’m assuming your field that denotes whether the training is informal or formal is a single select field. I highly suggest editing those options to begin with capital letters. i.e. “Formal” vs. “formal”.
If you don’t do this, the FIND() function will find the word “formal” inside of “Informal” and give you a “Yes” when you really expect a “No”. The function is case sensitive, so capitalizing the “F” will solve that problem.
Hope that helps!
Hi there!
I would add two rollup fields on Table 2, that both point at your field on Table 1 which denotes whether the training is formal or informal. Then use the following two functions (one for each field)
IF(FIND("Formal", ARRAYJOIN(ARRAYUNIQUE(values))), "Yes", "No")
and
IF(FIND("Informal", ARRAYJOIN(ARRAYUNIQUE(values))), "Yes", "No")
IMPORTANT: I’m assuming your field that denotes whether the training is informal or formal is a single select field. I highly suggest editing those options to begin with capital letters. i.e. “Formal” vs. “formal”.
If you don’t do this, the FIND() function will find the word “formal” inside of “Informal” and give you a “Yes” when you really expect a “No”. The function is case sensitive, so capitalizing the “F” will solve that problem.
Hope that helps!
WOW! This is far above my hat :crazy_face: , but it works and I do understand it. Wasn’t really familiar with those functions, let alone with them combined…
THANK YOU for your quick response!
WOW! This is far above my hat :crazy_face: , but it works and I do understand it. Wasn’t really familiar with those functions, let alone with them combined…
THANK YOU for your quick response!
Yay! You’re so welcome, happy to help!