Sheet 2 skipping

Countryboy69

Board Regular
Joined
Dec 7, 2018
Messages
77
I'm building a workbook for work, I have very limited excel knowledge (YouTube has been a great friend lol). Anyways my question is on sheet 1 column A every cell may not end up filled out so on sheet 2 row b I want it to not skip rows if sheet 1 does. Sheet 1 is my input sheet where sheet 2 does the calculations. Any help would he awesome.
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
Hello,

Would be great if you could clarify your request ...

Do you have in Sheet1 your Column A filled with Data separated by Blank rows ...

and your objective is to get in Sheet 2 your Column B filled with exactly the same data ...BUT skipping the Blank rows ...???
 
Upvote 0
Dynamically linking items in the 2 sheets eliminating blanks requires an array formula - committed with {CTRL}{SHIFT}{ENTER}

Paste this formula in cell B1 in sheet2 and commit with {CTRL}{SHIFT}{ENTER} before copying\dragging down
=INDIRECT("Sheet1!A"&SMALL(IF(LEN(Sheet1!$A$1:$A$500)=0,"",ROW(Sheet1!$1:$500)),ROW(A1)))

If you have entered the formula correctly it will look like this (you cannot type in the curly braces)
{=INDIRECT("Sheet1!A"&SMALL(IF(LEN(Sheet1!$A$1:$A$500)=0,"",ROW(Sheet1!$1:$500)),ROW(A1)))}

The number of rows in the range (500) should be adjusted to match the likely number of used rows in sheet1
The formula returns an error when there after the last item in sheet1
Excel 2016 (Windows) 32 bit
A
1
Name
2
Name1
3
Name2
4
5
6
7
8
9
Name3
10
Name4
11
Name5
12
Name6
13
14
15
16
17
18
Name7
Sheet: Sheet1

Excel 2016 (Windows) 32 bit
B
1
Name
2
Name1
3
Name2
4
Name3
5
Name4
6
Name5
7
Name6
8
Name7
9
#NUM!​
Sheet: Sheet2
 
Last edited:
Upvote 0
Ok when I input the formula which I had to slightly adjust ( sheet 1 is titled NOTES and the info begins at A3) but when I hit enter it brings up an open file window titled Update Values: NOTES1 not sure what this means
 
Upvote 0
Easy trick for you

1. Rename sheet "Notes" as "Sheet1"
2. Use my formula
3. Rename "Sheet1" as "Notes" (formula auto-adjusts)
4. Amend range in formula to begin at A3

(I think your formula has a typo - "Notes1!" Or "Notes1" when it should be "Notes!")
 
Last edited:
Upvote 0
OK not sure whats going on now but the file window no longer comes up instead it shows #value . sheet 1 is titled NOTES and starts in A3, Sheet 2 is titled DOWNTIME and starts in B3
 
Upvote 0
Easy trick for you

1. Rename sheet "Notes" as "Sheet1"
2. Use my formula
3. Rename "Sheet1" as "Notes" (formula auto-adjusts)
4. Amend range in formula to begin at A3

(I think your formula has a typo - "Notes1!" Or "Notes1" when it should be "Notes!")
This is what my formula now looks like =INDIRECT("NOTES!A"&SMALL(IF(LEN(NOTES!$A$3:$A$500)=0,"",ROW(NOTES!$3:$500)),ROW(A3)))
 
Upvote 0
also is there anyway to incorporate this formula in the one you made?
=IF(OR(D3="X",E3="X",F3="X",G3="X",I3="X",K3="X",L3="X",H3="X"),NOTES!A3,"")
 
Upvote 0
Did you remember to commit with {CTRL}{SHIFT}{ENTER} ?
 
Upvote 0

Forum statistics

Threads
1,214,622
Messages
6,120,585
Members
448,972
Latest member
Shantanu2024

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top