I’m trying to use a cross-sheet formula to pull data from my Primary Sheet into my Secondary Sheet in Smartsheet. My goal is to display the "Idea #" and "School Name" from the Primary Sheet in my Secondary Sheet for every row where the "Yes/No" column in the Primary Sheet has a value of "Yes."
Primary Sheet Details:
Column 1: Idea # (Contains unique identifiers for each idea)
Column 2: Yes/No (Contains "Yes" or "No")
Column 3: School Name (Contains the name of the school associated with each idea)
Secondary Sheet Details:
Column 1: Idea # (Where I want to display the "Idea #" from the Primary Sheet if the corresponding "Yes/No" value is "Yes")
Column 2: School Name (Where I want to display the "School Name" from the Primary Sheet if the corresponding "Yes/No" value is "Yes")
Formula I Tried:
=IF(YesNoReference@row = "Yes", IdeaNumberReference@row, "")
Note: I’m using a similar formula for the "School Name" column.
Additional Information: The Primary Sheet contains hundreds of rows, many of which have "Yes" in the "Yes/No" column. I want the Secondary Sheet to dynamically pull the "Idea #" and "School Name" into a row for each corresponding row in the Primary Sheet where the "Yes/No" value is "Yes."
Thank you for your assistance!