N
N
Nikolay2021-02-02 21:33:36
excel
Nikolay, 2021-02-02 21:33:36

A column in 3 columns or 3 lines in one?

Given: a bunch of phrases (lines) in a column.
Need: merge every 3 lines into one.
Roughly speaking, there are 99 lines, but you need to get 33.

Separately, it is not an option to combine every 3 phrases with handles in Excel.
Can someone tell me a solution for Excel or Notepad ++ so that you can merge at once?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
G
Grigory Boev, 2021-02-03
@Nikolaos

excel:

=
ДВССЫЛ("R"&(СТРОКА()*3-2)&"C1";0)&" "&
ДВССЫЛ("R"&(СТРОКА()*3-1)&"C1";0)&" "&
ДВССЫЛ("R"&(СТРОКА()*3)&"C1";0)

where C 1 is the number of the data column
In Notepad++ something like this (for lines that are not too long):
  1. Go to beginning of text Ctrl + Home
  2. Macro Recording
  3. End
  4. Del
  5. End
  6. Del
  7. Down
  8. Home
  9. Stop recording
  10. Enable macro. Select "Repeat to end of file"

For long strings, instead of End , you need to look for \n in advanced search

A
Alexander, 2021-02-02
@ForestAndGarden

6019a16d2416e651226547.png

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question