Split a cell into multiple rows

ab1275

New Member
Joined
Jul 19, 2016
Messages
31
Office Version
  1. 365
Platform
  1. Windows
Below is a mocked up file format that I have. The length is variable. Number of rows within each cell is also variable. Each row within the cell doesn't have a delimiter such as a comma. I had used Alt+Enter to create a row within each cell.
My end goal is to get a count in column B which based on the sample below should be 9.
Is there an easy way to get that information without macro?

Row 1A5678
Cheatsheet
D8796555
Row 2Snapshot5667
Pic345654332
Row 3Hello097685
F1234587
Row 4ABC
R8697089
 
Glad we could help & thanks for the feedback.

Please remember to update your account details to show your Excel version & then scroll down & click save. ;)
Thanks
 
Upvote 0

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Assuming no blank cells in the range, this formula should also work...

=SUMPRODUCT(LEN(A1:A4)-LEN(SUBSTITUTE(A1:A4,CHAR(10),""))+1)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,493
Messages
6,125,128
Members
449,206
Latest member
burgsrus

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top