Extract consecutive numbers in Excel -


how can extract in excel consecutive (adjacent) numbers @ same row.

for example, following data a1, b1, c1, d1, e1.

16 20 26 27 34

how can extract f1 26, 27

any appreciated.

you can use formula this

=c1&", "&d1 

or office 365, can use new function called textjoin.

=textjoin(", ",true,c1:d1) 

Comments

Popular posts from this blog

node.js - Node js - Trying to send POST request, but it is not loading javascript content -

javascript - Replicate keyboard event with html button -

javascript - Web audio api 5.1 surround example not working in firefox -