Need to pull values across several sheets and columns into 1 column stacked, not combined.
I am looking to pull values from the Time 1 column of Example 1 sheet and the Time 2 column of the Example 2 sheet into the Time column on my Reference sheet with those values listed, not combined. Below images may help explain what I am looking for:
Best Answer
-
Hi @Myals Jones
Here is a solution.
[INT] =INT(([Row ID]@row + 1) / 2)
[Time] =IF(MOD([Row ID]@row, 2) = 1, [Time 1]@row, [Time 2]@row)
[Time 1] =INDEX({Example 1 : Time 1}, INT@row)
[Time 2] =INDEX({Example 2 : Time 2}, INT@row)
Answers
-
Hi @Myals Jones
Here is a solution.
[INT] =INT(([Row ID]@row + 1) / 2)
[Time] =IF(MOD([Row ID]@row, 2) = 1, [Time 1]@row, [Time 2]@row)
[Time 1] =INDEX({Example 1 : Time 1}, INT@row)
[Time 2] =INDEX({Example 2 : Time 2}, INT@row) -
Thank you so much for your help!
-
Happy to help!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.6K Get Help
- 433 Global Discussions
- 136 Industry Talk
- 465 Announcements
- 4.9K Ideas & Feature Requests
- 143 Brandfolder
- 147 Just for fun
- 63 Community Job Board
- 466 Show & Tell
- 32 Member Spotlight
- 2 SmartStories
- 298 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!