ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   cell-fill-makro (https://www.excelbanter.com/excel-programming/307450-cell-fill-makro.html)

Andreas Aust

cell-fill-makro
 
Hi together,

I need a macro.

I have a column and in this columne there are some empty cells.
And in these cells I want fill with an expression like "this is an empty
cell".

Do you have an idea how I can solve this problem?

Thank you in advance!

Regards Andi


Tom Ogilvy

cell-fill-makro
 
Dim rng as Range
On error resume Next
set rng = columns(3).SpecialCells(xlblanks)
On Error goto 0
if not rng is nothing then
rng.Value = "this is an empty cell"
End if

--
Regards,
Tom Ogilvy

"Andreas Aust" wrote in message
...
Hi together,

I need a macro.

I have a column and in this columne there are some empty cells.
And in these cells I want fill with an expression like "this is an empty
cell".

Do you have an idea how I can solve this problem?

Thank you in advance!

Regards Andi




Andreas Aust

cell-fill-makro
 
Thank you Tom!

It does work!!

Andi

Tom Ogilvy schrieb:

Dim rng as Range
On error resume Next
set rng = columns(3).SpecialCells(xlblanks)
On Error goto 0
if not rng is nothing then
rng.Value = "this is an empty cell"
End if

--
Regards,
Tom Ogilvy

"Andreas Aust" wrote in message
...
Hi together,

I need a macro.

I have a column and in this columne there are some empty cells.
And in these cells I want fill with an expression like "this is an empty
cell".

Do you have an idea how I can solve this problem?

Thank you in advance!

Regards Andi




All times are GMT +1. The time now is 10:56 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com