How to find out which rows are missing in excel -
i work company business phone companies , has thousands of lines. sample of document. 4 thousand rows.
i need formula tells me columns empty/blank in each row.
what want in call l2, columns h, i, j, , k missing/blank. without vba if impossible, accept vba code.
this columns h,i,j,k in l1 enter:
=if(h1="","h","") & if(i1="","i","") & if(j1="","j","") & if(k1="","k","")
and copy down:
edit#1:
to put space between letters, use formula instead:
=if(h1="","h ","") & if(i1="","i ","") & if(j1="","j ","") & if(k1="","k","")
Comments
Post a Comment