2

In Excel, is it possible to paste in a long text and have that split into subgroups of 255 characters each? It does not have to be split at a space or anything like that.

I tried to create a simple formula in Excel to get the first 255 characters of whatever is in column A, but not sure how to do this for the next sets of 255:

This is what I tried to get them from column A: =LEFT(A1,255)

4

2 に答える 2

4

列 B で以下の式を使用して、ドラッグすることができます。

=MID($A1,255*(COLUMN()-2)+1,255)

于 2012-11-02T23:05:01.950 に答える
1

文字のサブセットを取得するには、MID 関数を使用します。サブセクション選択の値を列ヘッダーに入力してから、MID 関数で列ヘッダーの値を参照できます。

于 2012-11-02T22:36:12.040 に答える