VBA to copy to empty cell directly below a cell when analogous cells in different column have same v

S

SROSENYC

A deadline beckons, and help with regard to the following would be greatly
appreciated.

I have an eight-column Excel (for Mac, but don't think that matters) sheet
(columns "A" -"H") and am trying to write a macro that will look down the cells
in Column "H" (about 10,000 rows of data) and upon finding an empty cell, copy
the contents (text) from the cell directly above it IF:

--the "target" cell is empty; AND
--the value of the corresponding cells over in column "D" equal each other.

In other words, IF:

in Column "D" Rows 26 and 27 both have a value of, e.g., "Smith"; AND
in Column "H", Row 26 has a value of "Judge12", and Row 27 is empty,
the macro should copy "Judge 12" from Row 26 to Row 27 in Column "H"


Steven Rosenberg : )
 
M

Myrna Larson

Do you require a macro?

You can do this by

1. selecting column H, then Edit/Goto/Special and select Blanks.

2. Let's say the first blank cell is in H83. In that cell write the formula =IF(D83=D82,H82,"").

3. Press CTRL+ENTER to put this formula in all of the selected cells.

4. To these convert these formulas to their values, Edit/Copy column H (all of the cells, not
just the blanks), then -- without changing the selection -- Edit/Paste Special and select the
Values option.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top