How to check if a cell has multiple lines inside

barissh

Board Regular
Joined
Aug 10, 2006
Messages
94
Hello,

As all you know we can insert multiple lines to one cell while pressing CTRL + Enter combinations.
So how can I check with a macro whether activecell has multiple lines inside ?
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
A single line of code should suffice...
If InStr(1, Range("A1"), Chr(10), 1) > 0 Then MsgBox "Range A1 contains multiple lines"
 
Upvote 0
Dear friend,

Many thnks for the code. It works greatly. And just an offer for other users who may need this code in the future :
if you want to get content of the first line of the cell then you can use below code:

Code:
dim firstline as string
firstline = Mid(Range("A1"), 1, InStr(1, Range("A1"), Chr(10), 1))
 
Upvote 0
I'd use

Code:
msgbox split(range("A1"),vblf)(0)

PS. you can omit the default arguments of 'instr'

Code:
if instr(range("A1"),vblf) then msgbox "Multiline cell"
 
Last edited:
Upvote 0
Dear snb,

Yes, your code is also working great. And your code to get first line's content works better than mine :) Thank you very much.
 
Upvote 0

Forum statistics

Threads
1,214,386
Messages
6,119,215
Members
448,874
Latest member
b1step2far

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