LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1   Report Post  
Junior Member
 
Posts: 3
Default Fill cell with value above it (with validation).

Hello all,

I’m hoping to get some assistance with the following:

I have column “A” and “B”.

Column “B” has some cells with 4 dashes (----). I would like to replace the dashes with the value from the cell directly above it. There might be one cell with dashes or many contiguous cells with dashes in column “B”.

The other thing I’m trying to do is make sure the value in the cell to the left of the dashes, and the value directly above that cell, are the same. If they are not, the dashes should not be replaced. Like this:

Befo
COLA | COLB
Part1 | PO1
Part1 | ----
Part1 | ----
Part2 | ----
Part3 | PO2
Part3 | ----

After:
COLA | COLB
Part1 | PO1
Part1 | PO1
Part1 | PO1
Part2 | ----
Part3 | PO2
Part3 | PO2

I found the code below on extendoffice.com. It works great if the cells are blank (instead of filled with dashes). This code also requires that I have a cell in column “B” selected. I’m trying to make it so I don’t have to worry about what cell is selected. And, I need to add the validation step.

Any help is appreciated.

Thanks!

Sub AddPOToBlanks()
'fill blank cells in column with value above

Dim Area As Range, LastRow As Long
On Error Resume Next
LastRow = Cells.Find(What:="*", SearchOrder:=xlRows, _
| | SearchDirection:=xlPrevious, _
| | LookIn:=xlFormulas).Row
For Each Area In ActiveCell.EntireColumn(1).Resize(LastRow). _
| | SpecialCells(xlCellTypeBlanks).Areas
Area.Value = Area(1).Offset(-1).Value
Next
End Sub
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
remove fill in text from a cell from an unpopulated fill-in cell Deb[_3_] Excel Worksheet Functions 1 September 22nd 09 03:28 PM
Blank cell w/data validation & automatic fill in? Munchkin Excel Programming 1 June 6th 09 04:22 PM
Validation List to fill adjacent cell with IF? braeden13 Excel Discussion (Misc queries) 2 March 14th 08 02:54 AM
validation (list) & auto fill Charlie7805 Excel Worksheet Functions 2 February 29th 08 07:22 PM
Can Validation against a list do auto-fill in a cell? pastrami_dave Excel Discussion (Misc queries) 5 October 6th 06 10:56 PM


All times are GMT +1. The time now is 06:49 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"