Hello everyone,
I want to make an excel formula that checks if a column doesn't contain a blank cell if it doesn't it needs to return a value from that specific row if it doesn't it needs to move on to the next so that every number is neatly in sequence and no blank spaces are present anymore.
This could be done by copying the columns pasting them as values and then use a sort, but I want to have the proces automated for future users of the excel worksheet.
This is my currnet formula:
{=IFERROR(INDEX($E$8:$E$12;SMALL(IF(""<>$F$8:$F$12;MATCH(ROW($F$8:$F$12);ROW($F$8:$F$12));"");ROWS($N$1:N1)));"")}
It is checking the F column for empty cells and if it doesn't encounter them selecting the row numbers returns the value of that row in column E it also needs to do this for F and G.
I have two problems with the formula as of now:
1. It works well when retrieving cells from column E and G but doesn't in F. (SOLVED)
2. It now specifically checks for a certain array length but, I need it to do this for the entire E,F and G column no matter the length since this will deviate in the future (all columns start at row 8 in the current sheet)
I have worked with excel a fair bit but, I am no expert whatsoever. So if you have an answer to my problems it would be very much appreciated if you could explain the answer.
Thank you all for your time!
Bookmarks