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.
 
if the formula is already in the cell...
select the cell ...
{F2} to go into edit mode ...
use the 3 keys instead of {ENTER}
 
Upvote 0

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
If you want to suppress #NUM errors, wrap IFERROR around the formula, like this...
(it is still an ARRAY formula)

=IFERROR(INDIRECT("Sheet1!A"&SMALL(IF(LEN(Sheet1!$A$1:$A$500)=0,"",ROW(Sheet1!$1:$500)),ROW(B2))),"")
 
Last edited:
Upvote 0
if you want to suppress #num errors, wrap iferror around the formula, like this...
(it is still an array formula)

=iferror(indirect("sheet1!a"&small(if(len(sheet1!$a$1:$a$500)=0,"",row(sheet1!$1:$500)),row(b2))),"")

dude you freaking rock thank you so much for your help.
 
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,"")


1. Which sheet contains D3,E3,F3,G3,I3,K3,L3 & H3 ? Are those cells in "Notes" or Sheet2?

2. Are those cells empty if they do not contain "X". If so you could use simpler formula
=IF(D3&E3&F3&G3&I3&K3&L3&H3>"",Notes!A3,"")
 
Upvote 0

Forum statistics

Threads
1,216,036
Messages
6,128,432
Members
449,452
Latest member
Chris87

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