excel - return only values in a row -


i have list of unique ids , values on 1 sheet in excel in image below:

enter image description here

is there way return values in order appear (left right) on separate sheet/location? example, want return id '1002' values 35,32,44.. not blanks. going turn values sparkline.

i using excel 2010, if makes difference.

thanks! sam

try formula:

=substitute(trim(b2 & " " & c2 & " " & d2 & " " & e2 & " " & f2)," ",",") 


edit: _______________________________________________________________________________

hope not late answer question.

lets assume data in sheet1 in image below:

enter image description here

now, in cell b2 of sheet2 enter following formula:

=iferror(index(sheet1!$b2:sheet1!$f2, small(if(isblank(sheet1!$b2:sheet1!$f2), "", column(sheet1!$b2:sheet1!$f2)-min(column(sheet1!$b2:sheet1!$f2))+1), column(a1))),"") 

this array formula commit pressing ctrl+shift+enter

drag formula across till column f , down till row 4 or required. give following result.

enter image description here

i guess looking for.


Comments

Popular posts from this blog

Why does Go error when trying to marshal this JSON? -

Django REST Framework perform_create: You cannot call `.save()` after accessing `serializer.data` -

apache - Restler setup not working -