Forum Discussion
abdullahmuthanna
Jun 04, 2022Copper Contributor
Move Value between blanks and skip the blank cells
Hello, I've column that's include a values and blanks so i just need to move only values without taking the blanks with the formula what i tried is : used =IF(Main!O5,Main!J5,"") so the fo...
PeterBartholomew1
Jun 04, 2022Silver Contributor
If it is simply a question of filtering out blanks from a list then, using 365, the following would work
= FILTER(list, list<>"")In legacy Excel it is distinctly more messy
= INDEX(list,SMALL(IF(LEN(list)>0,seq),seq))committed with CSE.