Hello all, I am new to Smartsheet and this community, so I apologize in advance if my question has been asked and answered numerous times already. I just couldn't find my answer. Here it is anyway:
I am trying to concatenate all fields I find in "Note" on "SourceSheet" and place the conatenated string of text in "CumulativeNotes" on "DestSheet" for each row in "SourceSheet" wherever "DestProj = SourceProj".
I have the following formula to grab one field, and it naturally stops at the first instance it finds because that is how MATCH works:
=INDEX({SoruceSheetTable}, MATCH(DestProject@row, {SoruceSheetSourceProj}, 0), 2)
What do I use to collect and concatenate all notes separated by " - " when the "DestProj = SourceProj" condition is true?
Thank you for your help.