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

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
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,804
Messages
6,121,652
Members
449,045
Latest member
Marcus05

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