ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   insert a row above the first one (https://www.excelbanter.com/excel-programming/372566-insert-row-above-first-one.html)

Janis

insert a row above the first one
 
I have a macro with an if/then that puts header rows before all the sorted
departments except it doesn't do the last row. After the if/then block I
want to put in a header row on the first row with the department name in cell
block (1,17)
I have this but the insert doesn't work exactly right. I don't want it to
wipe out row one just put a gray header row above it. I almost got it.
Thanks,

..Rows(1).Insert.before
..Cells(1, 4).Value = .cells(1,17)
..Cells(1, 4).Font.Bold = True
..Cells(1, 4).Font.Size = 14
..Cells(1, 4).RowHeight = 18
..cells(1,4).Font.color = vbWhite

Don Guillett

insert a row above the first one
 
..Rows(1).Insert
with.Cells(1, 4)
..Value = .cells(1,17)
..Font.Bold = True
..Font.Size = 14
..RowHeight = 18
..Font.color = vbWhite
end with
--
Don Guillett
SalesAid Software

"Janis" wrote in message
...
I have a macro with an if/then that puts header rows before all the sorted
departments except it doesn't do the last row. After the if/then block I
want to put in a header row on the first row with the department name in
cell
block (1,17)
I have this but the insert doesn't work exactly right. I don't want it to
wipe out row one just put a gray header row above it. I almost got it.
Thanks,

.Rows(1).Insert.before
.Cells(1, 4).Value = .cells(1,17)
.Cells(1, 4).Font.Bold = True
.Cells(1, 4).Font.Size = 14
.Cells(1, 4).RowHeight = 18
.cells(1,4).Font.color = vbWhite




Janis

insert a row above the first one
 
thanks very much,

"Don Guillett" wrote:

..Rows(1).Insert
with.Cells(1, 4)
..Value = .cells(1,17)
..Font.Bold = True
..Font.Size = 14
..RowHeight = 18
..Font.color = vbWhite
end with
--
Don Guillett
SalesAid Software

"Janis" wrote in message
...
I have a macro with an if/then that puts header rows before all the sorted
departments except it doesn't do the last row. After the if/then block I
want to put in a header row on the first row with the department name in
cell
block (1,17)
I have this but the insert doesn't work exactly right. I don't want it to
wipe out row one just put a gray header row above it. I almost got it.
Thanks,

.Rows(1).Insert.before
.Cells(1, 4).Value = .cells(1,17)
.Cells(1, 4).Font.Bold = True
.Cells(1, 4).Font.Size = 14
.Cells(1, 4).RowHeight = 18
.cells(1,4).Font.color = vbWhite





Don Guillett

insert a row above the first one
 
glad to help

--
Don Guillett
SalesAid Software

"Janis" wrote in message
...
thanks very much,

"Don Guillett" wrote:

..Rows(1).Insert
with.Cells(1, 4)
..Value = .cells(1,17)
..Font.Bold = True
..Font.Size = 14
..RowHeight = 18
..Font.color = vbWhite
end with
--
Don Guillett
SalesAid Software

"Janis" wrote in message
...
I have a macro with an if/then that puts header rows before all the
sorted
departments except it doesn't do the last row. After the if/then block
I
want to put in a header row on the first row with the department name
in
cell
block (1,17)
I have this but the insert doesn't work exactly right. I don't want it
to
wipe out row one just put a gray header row above it. I almost got it.
Thanks,

.Rows(1).Insert.before
.Cells(1, 4).Value = .cells(1,17)
.Cells(1, 4).Font.Bold = True
.Cells(1, 4).Font.Size = 14
.Cells(1, 4).RowHeight = 18
.cells(1,4).Font.color = vbWhite








All times are GMT +1. The time now is 01:17 AM.

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