Formula help

Donai

Well-known Member
Joined
Mar 28, 2009
Messages
543
Hi, i need a formula that will look for blanks in Col A6:A, if blank found then return error else ok


Excel Workbook
AB
3JP MorganTest
4JP MorganTest
5JP MorganTest
6JP MorganTest
7JP MorganTest
8JP MorganTest
9JP MorganTest
10JP MorganTest
11JP MorganTest
12JP MorganTest
13JP MorganTest
14JP MorganTest
15JP MorganTest
16Test
17JP MorganTest
18JP MorganTest
19JP MorganTest
20JP MorganTest
21JP MorganTest
22JP MorganTest
23JP MorganTest
24Test
Sheet2
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
set therange = Range("")

for each theCell in theRange
if theCell.Value = "" Then
msgBox "Error" & theCell.address
Next

Pretty crude... but maybe something like this?
 
Upvote 0
set therange = Range("")

for each theCell in theRange
if theCell.Value = "" Then
msgBox "Error" & theCell.address
Next

Pretty crude... but maybe something like this?

I am after a formula not vba code
 
Upvote 0
By this comment, are you looking for just one formula in E1 that evaluates everything in one go?

Based on your sample data, what would be the result in E1?

Yes i want one formula that evaluates everything, if blanks found then return error else Ok
 
Upvote 0

Forum statistics

Threads
1,214,614
Messages
6,120,517
Members
448,968
Latest member
Ajax40

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