excel - To traverse rows into columns -


i having 3 columns (app, ticket, efforts). task separate username accidentally gets added in column (app) , apply in new column (column d). data below.

app           ticket    efforts  james, lijo       app1          23    13  app2          44    22  app3          55    33  tom, cruise       app2          44    22  app1          33    42    output expected :   app ticket  efforts columnd  app1    23  13    james, lijo  app2    44  22    james, lijo  app3    55  33    james, lijo  app2    44  22    tom, cruise  app1    33  42    tom, cruise 

stick formula in d3 , drag down last row

=if(isnumber(b2),if(b3<>"",d2,""),a2) 

enter image description here


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -