Creating a new list and eliminate empty cells and cells with =“” from existing list

前端 未结 1 1858
隐瞒了意图╮
隐瞒了意图╮ 2021-01-25 01:54

I have the following Excel spreadsheet:

         A           B            C           D
1    Product A      500       Product A      500
2    Product B      300          


        
相关标签:
1条回答
  • 2021-01-25 02:22

    Please try:

    =INDEX(A:A,SMALL(IF(LEN(A:A)=0,"",ROW(A:A)-MIN(ROW(A:A))+1),ROW(A1)))
    

    in C1 copied across one column and the pair down to suit, with CSE entry.

    0 讨论(0)
提交回复
热议问题