PC Review


Reply
Thread Tools Rate Thread

backfill cells with macros

 
 
=?Utf-8?B?SmFzb24gSGFsbA==?=
Guest
Posts: n/a
 
      19th Oct 2007
I am trying to figure out a way to backfill blank cells in Excel on the same
row. For example:

column A B C D

1 x x x o
2 x x o o
3 x x x o

In row 1 I want the information in cell 1D populate the blank cells in
column 1A,1B, and 1C
In row 2 I want the information in cell 2C to poplulate the blank cells in
column 2A and 2B

Ideally, I want Excel to realize that there are blank cells in a row and
fill those blank cells with the first information it finds on that row.
 
Reply With Quote
 
 
 
 
=?Utf-8?B?U2VhbkMgVUs=?=
Guest
Posts: n/a
 
      19th Oct 2007
Hi Jason,

Try this. This code will search for the last row with data in it, then work
back through that row and the ones above it, each time looking for the first
item of data in each row. The first cell occupied is then copied into all the
preceding cells in that row. If a row is empty then nothing is done on that
row. If data is already in the first column of a row then nothing is done in
that row. Let me know if this is OK, or if I've misunderstood.

Public Sub BackFill()
Dim lngLastRow As Long
Dim intFirstItemCol As Integer
Dim lngRowCounter As Long
Dim intColumnCounter As Integer
lngLastRow = LastRow(ActiveSheet)
If lngLastRow > 0 Then
For lngRowCounter = lngLastRow To 1 Step -1
intFirstItemCol = FirstInRow(ActiveSheet, lngRowCounter)
If intFirstItemCol > 1 Then
For intColumnCounter = intFirstItemCol - 1 To 1 Step -1
ActiveSheet.Cells(lngRowCounter, intColumnCounter) =
ActiveSheet.Cells(lngRowCounter, intFirstItemCol)
Next
Else
'EMPTY ROW OR DATA IN COLUMN 1 ALREADY
End If
Next
Else
MsgBox ("Nothing found on worksheet")
End If
End Sub

Private Function LastRow(ByRef Sheetname As Worksheet) As Long
On Error GoTo LastRowError
LastRow = Sheetname.Cells.Find(What:="*", _
After:=Sheetname.Range("A1"), _
LookAt:=xlPart, _
LookIn:=xlFormulas, _
SearchOrder:=xlByRows, _
SearchDirection:=xlPrevious, _
MatchCase:=False).Row
On Error GoTo 0
Exit Function
LastRowError:
On Error GoTo 0
LastRow = 0
End Function

Public Function FirstInRow(ByRef Sheetname As Worksheet, ByRef RowNum As
Long) As Integer
On Error GoTo ItemsInRowError
FirstInRow = Sheetname.Rows(RowNum).Find(What:="*", _
After:=Cells(RowNum, Columns.Count), _
LookIn:=xlFormulas, _
LookAt:=xlWhole, _
SearchOrder:=xlByColumns, _
SearchDirection:=xlPrevious).Column
On Error GoTo 0
Exit Function
ItemsInRowError:
On Error GoTo 0
FirstInRow = 0
End Function



Sean.



(please remember to click yes if these replies are useful to you)



"Jason Hall" wrote:

> I am trying to figure out a way to backfill blank cells in Excel on the same
> row. For example:
>
> column A B C D
>
> 1 x x x o
> 2 x x o o
> 3 x x x o
>
> In row 1 I want the information in cell 1D populate the blank cells in
> column 1A,1B, and 1C
> In row 2 I want the information in cell 2C to poplulate the blank cells in
> column 2A and 2B
>
> Ideally, I want Excel to realize that there are blank cells in a row and
> fill those blank cells with the first information it finds on that row.

 
Reply With Quote
 
=?Utf-8?B?SkxHV2hpeg==?=
Guest
Posts: n/a
 
      20th Oct 2007
This worked on a small test area:

Sub bckfl()
Dim x, y As Range
lr = Cells(Rows.Count, 1).End(xlUp).Row
i = 2
For Each y In Range("A2:A" & lr)
lc = Cells(i, Columns.Count).End(xlToLeft).Column
For Each x In Range(Cells(i, 1), Cells(i, lc))
If x = "" And x.Offset(0, 1) = "" Then
Range("A" & i, x.End(xlToRight).Offset(0, -1)) = x.End(xlToRight).Value
ElseIf x = "" And x.Offset(0, 1) <> "" Then
x.Offset(0, 0) = x.Offset(0, 1).Value
End If

Next x
i = i + 1
Next y
End Sub

Might need some tweaking for your application.

"Jason Hall" wrote:

> I am trying to figure out a way to backfill blank cells in Excel on the same
> row. For example:
>
> column A B C D
>
> 1 x x x o
> 2 x x o o
> 3 x x x o
>
> In row 1 I want the information in cell 1D populate the blank cells in
> column 1A,1B, and 1C
> In row 2 I want the information in cell 2C to poplulate the blank cells in
> column 2A and 2B
>
> Ideally, I want Excel to realize that there are blank cells in a row and
> fill those blank cells with the first information it finds on that row.

 
Reply With Quote
 
james.billy@gmail.com
Guest
Posts: n/a
 
      20th Oct 2007
On 20 Oct, 00:34, JLGWhiz <JLGW...@discussions.microsoft.com> wrote:
> This worked on a small test area:
>
> Sub bckfl()
> Dim x, y As Range
> lr = Cells(Rows.Count, 1).End(xlUp).Row
> i = 2
> For Each y In Range("A2:A" & lr)
> lc = Cells(i, Columns.Count).End(xlToLeft).Column
> For Each x In Range(Cells(i, 1), Cells(i, lc))
> If x = "" And x.Offset(0, 1) = "" Then
> Range("A" & i, x.End(xlToRight).Offset(0, -1)) = x.End(xlToRight).Value
> ElseIf x = "" And x.Offset(0, 1) <> "" Then
> x.Offset(0, 0) = x.Offset(0, 1).Value
> End If
>
> Next x
> i = i + 1
> Next y
> End Sub
>
> Might need some tweaking for your application.
>
>
>
> "Jason Hall" wrote:
> > I am trying to figure out a way to backfill blank cells in Excel on the same
> > row. For example:

>
> > column A B C D

>
> > 1 x x x o
> > 2 x x o o
> > 3 x x x o

>
> > In row 1 I want the information in cell 1D populate the blank cells in
> > column 1A,1B, and 1C
> > In row 2 I want the information in cell 2C to poplulate the blank cells in
> > column 2A and 2B

>
> > Ideally, I want Excel to realize that there are blank cells in a row and
> > fill those blank cells with the first information it finds on that row.- Hide quoted text -

>
> - Show quoted text -


Hi,

How about:

Sub FillRight()
With Range("A1" & Cells(65536,1).end(xlup).row)
.SpecialCells(xlCellTypeBlanks).FormulaR1C1 = "=RC[1]"
.Formula = .Value
End With
End Sub

James

 
Reply With Quote
 
=?Utf-8?B?SkxHV2hpeg==?=
Guest
Posts: n/a
 
      20th Oct 2007
Hi James,

It works OK except that if there are blanks to the right of an entry
it produces zeros to the end of the row within the range.

"(E-Mail Removed)" wrote:

> On 20 Oct, 00:34, JLGWhiz <JLGW...@discussions.microsoft.com> wrote:
> > This worked on a small test area:
> >
> > Sub bckfl()
> > Dim x, y As Range
> > lr = Cells(Rows.Count, 1).End(xlUp).Row
> > i = 2
> > For Each y In Range("A2:A" & lr)
> > lc = Cells(i, Columns.Count).End(xlToLeft).Column
> > For Each x In Range(Cells(i, 1), Cells(i, lc))
> > If x = "" And x.Offset(0, 1) = "" Then
> > Range("A" & i, x.End(xlToRight).Offset(0, -1)) = x.End(xlToRight).Value
> > ElseIf x = "" And x.Offset(0, 1) <> "" Then
> > x.Offset(0, 0) = x.Offset(0, 1).Value
> > End If
> >
> > Next x
> > i = i + 1
> > Next y
> > End Sub
> >
> > Might need some tweaking for your application.
> >
> >
> >
> > "Jason Hall" wrote:
> > > I am trying to figure out a way to backfill blank cells in Excel on the same
> > > row. For example:

> >
> > > column A B C D

> >
> > > 1 x x x o
> > > 2 x x o o
> > > 3 x x x o

> >
> > > In row 1 I want the information in cell 1D populate the blank cells in
> > > column 1A,1B, and 1C
> > > In row 2 I want the information in cell 2C to poplulate the blank cells in
> > > column 2A and 2B

> >
> > > Ideally, I want Excel to realize that there are blank cells in a row and
> > > fill those blank cells with the first information it finds on that row.- Hide quoted text -

> >
> > - Show quoted text -

>
> Hi,
>
> How about:
>
> Sub FillRight()
> With Range("A1" & Cells(65536,1).end(xlup).row)
> .SpecialCells(xlCellTypeBlanks).FormulaR1C1 = "=RC[1]"
> .Formula = .Value
> End With
> End Sub
>
> James
>
>

 
Reply With Quote
 
=?Utf-8?B?U2VhbkMgVUs=?=
Guest
Posts: n/a
 
      20th Oct 2007
I apologise Jason,

the FirstInRow function should have used the xlNext direction, not xlPrevious:

Public Function FirstInRow(ByRef Sheetname As Worksheet, ByRef RowNum As
Long) As Integer
On Error GoTo ItemsInRowError
FirstInRow = Sheetname.Rows(RowNum).Find(What:="*", _
After:=Cells(RowNum, Columns.Count), _
LookIn:=xlFormulas, _
LookAt:=xlWhole, _
SearchOrder:=xlByColumns, _
SearchDirection:=xlNext).Column
On Error GoTo 0
Exit Function
ItemsInRowError:
On Error GoTo 0
FirstInRow = 0
End Function

I wasn't sure how specific your original query was (ie 4 columns, 3 rows) so
this solution works for the whole sheet.

Cheers,

Sean.
--
(please remember to click yes if replies you receive are helpful to you)


"SeanC UK" wrote:

> Hi Jason,
>
> Try this. This code will search for the last row with data in it, then work
> back through that row and the ones above it, each time looking for the first
> item of data in each row. The first cell occupied is then copied into all the
> preceding cells in that row. If a row is empty then nothing is done on that
> row. If data is already in the first column of a row then nothing is done in
> that row. Let me know if this is OK, or if I've misunderstood.
>
> Public Sub BackFill()
> Dim lngLastRow As Long
> Dim intFirstItemCol As Integer
> Dim lngRowCounter As Long
> Dim intColumnCounter As Integer
> lngLastRow = LastRow(ActiveSheet)
> If lngLastRow > 0 Then
> For lngRowCounter = lngLastRow To 1 Step -1
> intFirstItemCol = FirstInRow(ActiveSheet, lngRowCounter)
> If intFirstItemCol > 1 Then
> For intColumnCounter = intFirstItemCol - 1 To 1 Step -1
> ActiveSheet.Cells(lngRowCounter, intColumnCounter) =
> ActiveSheet.Cells(lngRowCounter, intFirstItemCol)
> Next
> Else
> 'EMPTY ROW OR DATA IN COLUMN 1 ALREADY
> End If
> Next
> Else
> MsgBox ("Nothing found on worksheet")
> End If
> End Sub
>
> Private Function LastRow(ByRef Sheetname As Worksheet) As Long
> On Error GoTo LastRowError
> LastRow = Sheetname.Cells.Find(What:="*", _
> After:=Sheetname.Range("A1"), _
> LookAt:=xlPart, _
> LookIn:=xlFormulas, _
> SearchOrder:=xlByRows, _
> SearchDirection:=xlPrevious, _
> MatchCase:=False).Row
> On Error GoTo 0
> Exit Function
> LastRowError:
> On Error GoTo 0
> LastRow = 0
> End Function
>
> Public Function FirstInRow(ByRef Sheetname As Worksheet, ByRef RowNum As
> Long) As Integer
> On Error GoTo ItemsInRowError
> FirstInRow = Sheetname.Rows(RowNum).Find(What:="*", _
> After:=Cells(RowNum, Columns.Count), _
> LookIn:=xlFormulas, _
> LookAt:=xlWhole, _
> SearchOrder:=xlByColumns, _
> SearchDirection:=xlPrevious).Column
> On Error GoTo 0
> Exit Function
> ItemsInRowError:
> On Error GoTo 0
> FirstInRow = 0
> End Function
>
>
>
> Sean.
>
>
>
> (please remember to click yes if these replies are useful to you)
>
>
>
> "Jason Hall" wrote:
>
> > I am trying to figure out a way to backfill blank cells in Excel on the same
> > row. For example:
> >
> > column A B C D
> >
> > 1 x x x o
> > 2 x x o o
> > 3 x x x o
> >
> > In row 1 I want the information in cell 1D populate the blank cells in
> > column 1A,1B, and 1C
> > In row 2 I want the information in cell 2C to poplulate the blank cells in
> > column 2A and 2B
> >
> > Ideally, I want Excel to realize that there are blank cells in a row and
> > fill those blank cells with the first information it finds on that row.

 
Reply With Quote
 
=?Utf-8?B?SmFzb24gSGFsbA==?=
Guest
Posts: n/a
 
      22nd Oct 2007
Hey, any chance you can walk me through how to add this to a Excel 2007
worksheet?

"JLGWhiz" wrote:

> Hi James,
>
> It works OK except that if there are blanks to the right of an entry
> it produces zeros to the end of the row within the range.
>
> "(E-Mail Removed)" wrote:
>
> > On 20 Oct, 00:34, JLGWhiz <JLGW...@discussions.microsoft.com> wrote:
> > > This worked on a small test area:
> > >
> > > Sub bckfl()
> > > Dim x, y As Range
> > > lr = Cells(Rows.Count, 1).End(xlUp).Row
> > > i = 2
> > > For Each y In Range("A2:A" & lr)
> > > lc = Cells(i, Columns.Count).End(xlToLeft).Column
> > > For Each x In Range(Cells(i, 1), Cells(i, lc))
> > > If x = "" And x.Offset(0, 1) = "" Then
> > > Range("A" & i, x.End(xlToRight).Offset(0, -1)) = x.End(xlToRight).Value
> > > ElseIf x = "" And x.Offset(0, 1) <> "" Then
> > > x.Offset(0, 0) = x.Offset(0, 1).Value
> > > End If
> > >
> > > Next x
> > > i = i + 1
> > > Next y
> > > End Sub
> > >
> > > Might need some tweaking for your application.
> > >
> > >
> > >
> > > "Jason Hall" wrote:
> > > > I am trying to figure out a way to backfill blank cells in Excel on the same
> > > > row. For example:
> > >
> > > > column A B C D
> > >
> > > > 1 x x x o
> > > > 2 x x o o
> > > > 3 x x x o
> > >
> > > > In row 1 I want the information in cell 1D populate the blank cells in
> > > > column 1A,1B, and 1C
> > > > In row 2 I want the information in cell 2C to poplulate the blank cells in
> > > > column 2A and 2B
> > >
> > > > Ideally, I want Excel to realize that there are blank cells in a row and
> > > > fill those blank cells with the first information it finds on that row.- Hide quoted text -
> > >
> > > - Show quoted text -

> >
> > Hi,
> >
> > How about:
> >
> > Sub FillRight()
> > With Range("A1" & Cells(65536,1).end(xlup).row)
> > .SpecialCells(xlCellTypeBlanks).FormulaR1C1 = "=RC[1]"
> > .Formula = .Value
> > End With
> > End Sub
> >
> > James
> >
> >

 
Reply With Quote
 
=?Utf-8?B?SmFzb24gSGFsbA==?=
Guest
Posts: n/a
 
      22nd Oct 2007
Any chance you can tell me how to add this to the Excel 2007 worksheet?

"JLGWhiz" wrote:

> Hi James,
>
> It works OK except that if there are blanks to the right of an entry
> it produces zeros to the end of the row within the range.
>
> "(E-Mail Removed)" wrote:
>
> > On 20 Oct, 00:34, JLGWhiz <JLGW...@discussions.microsoft.com> wrote:
> > > This worked on a small test area:
> > >
> > > Sub bckfl()
> > > Dim x, y As Range
> > > lr = Cells(Rows.Count, 1).End(xlUp).Row
> > > i = 2
> > > For Each y In Range("A2:A" & lr)
> > > lc = Cells(i, Columns.Count).End(xlToLeft).Column
> > > For Each x In Range(Cells(i, 1), Cells(i, lc))
> > > If x = "" And x.Offset(0, 1) = "" Then
> > > Range("A" & i, x.End(xlToRight).Offset(0, -1)) = x.End(xlToRight).Value
> > > ElseIf x = "" And x.Offset(0, 1) <> "" Then
> > > x.Offset(0, 0) = x.Offset(0, 1).Value
> > > End If
> > >
> > > Next x
> > > i = i + 1
> > > Next y
> > > End Sub
> > >
> > > Might need some tweaking for your application.
> > >
> > >
> > >
> > > "Jason Hall" wrote:
> > > > I am trying to figure out a way to backfill blank cells in Excel on the same
> > > > row. For example:
> > >
> > > > column A B C D
> > >
> > > > 1 x x x o
> > > > 2 x x o o
> > > > 3 x x x o
> > >
> > > > In row 1 I want the information in cell 1D populate the blank cells in
> > > > column 1A,1B, and 1C
> > > > In row 2 I want the information in cell 2C to poplulate the blank cells in
> > > > column 2A and 2B
> > >
> > > > Ideally, I want Excel to realize that there are blank cells in a row and
> > > > fill those blank cells with the first information it finds on that row.- Hide quoted text -
> > >
> > > - Show quoted text -

> >
> > Hi,
> >
> > How about:
> >
> > Sub FillRight()
> > With Range("A1" & Cells(65536,1).end(xlup).row)
> > .SpecialCells(xlCellTypeBlanks).FormulaR1C1 = "=RC[1]"
> > .Formula = .Value
> > End With
> > End Sub
> >
> > James
> >
> >

 
Reply With Quote
 
=?Utf-8?B?SmFzb24gSGFsbA==?=
Guest
Posts: n/a
 
      22nd Oct 2007
I am getting an error in VB and I don't know enough about VB to understand
the error. Please see below

"sub or function not defined" and VB highlights FirstInRow

intFirstItemCol = FirstInRow(ActiveSheet, lngRowCounter)

"SeanC UK" wrote:

> I apologise Jason,
>
> the FirstInRow function should have used the xlNext direction, not xlPrevious:
>
> Public Function FirstInRow(ByRef Sheetname As Worksheet, ByRef RowNum As
> Long) As Integer
> On Error GoTo ItemsInRowError
> FirstInRow = Sheetname.Rows(RowNum).Find(What:="*", _
> After:=Cells(RowNum, Columns.Count), _
> LookIn:=xlFormulas, _
> LookAt:=xlWhole, _
> SearchOrder:=xlByColumns, _
> SearchDirection:=xlNext).Column
> On Error GoTo 0
> Exit Function
> ItemsInRowError:
> On Error GoTo 0
> FirstInRow = 0
> End Function
>
> I wasn't sure how specific your original query was (ie 4 columns, 3 rows) so
> this solution works for the whole sheet.
>
> Cheers,
>
> Sean.
> --
> (please remember to click yes if replies you receive are helpful to you)
>
>
> "SeanC UK" wrote:
>
> > Hi Jason,
> >
> > Try this. This code will search for the last row with data in it, then work
> > back through that row and the ones above it, each time looking for the first
> > item of data in each row. The first cell occupied is then copied into all the
> > preceding cells in that row. If a row is empty then nothing is done on that
> > row. If data is already in the first column of a row then nothing is done in
> > that row. Let me know if this is OK, or if I've misunderstood.
> >
> > Public Sub BackFill()
> > Dim lngLastRow As Long
> > Dim intFirstItemCol As Integer
> > Dim lngRowCounter As Long
> > Dim intColumnCounter As Integer
> > lngLastRow = LastRow(ActiveSheet)
> > If lngLastRow > 0 Then
> > For lngRowCounter = lngLastRow To 1 Step -1
> > intFirstItemCol = FirstInRow(ActiveSheet, lngRowCounter)
> > If intFirstItemCol > 1 Then
> > For intColumnCounter = intFirstItemCol - 1 To 1 Step -1
> > ActiveSheet.Cells(lngRowCounter, intColumnCounter) =
> > ActiveSheet.Cells(lngRowCounter, intFirstItemCol)
> > Next
> > Else
> > 'EMPTY ROW OR DATA IN COLUMN 1 ALREADY
> > End If
> > Next
> > Else
> > MsgBox ("Nothing found on worksheet")
> > End If
> > End Sub
> >
> > Private Function LastRow(ByRef Sheetname As Worksheet) As Long
> > On Error GoTo LastRowError
> > LastRow = Sheetname.Cells.Find(What:="*", _
> > After:=Sheetname.Range("A1"), _
> > LookAt:=xlPart, _
> > LookIn:=xlFormulas, _
> > SearchOrder:=xlByRows, _
> > SearchDirection:=xlPrevious, _
> > MatchCase:=False).Row
> > On Error GoTo 0
> > Exit Function
> > LastRowError:
> > On Error GoTo 0
> > LastRow = 0
> > End Function
> >
> > Public Function FirstInRow(ByRef Sheetname As Worksheet, ByRef RowNum As
> > Long) As Integer
> > On Error GoTo ItemsInRowError
> > FirstInRow = Sheetname.Rows(RowNum).Find(What:="*", _
> > After:=Cells(RowNum, Columns.Count), _
> > LookIn:=xlFormulas, _
> > LookAt:=xlWhole, _
> > SearchOrder:=xlByColumns, _
> > SearchDirection:=xlPrevious).Column
> > On Error GoTo 0
> > Exit Function
> > ItemsInRowError:
> > On Error GoTo 0
> > FirstInRow = 0
> > End Function
> >
> >
> >
> > Sean.
> >
> >
> >
> > (please remember to click yes if these replies are useful to you)
> >
> >
> >
> > "Jason Hall" wrote:
> >
> > > I am trying to figure out a way to backfill blank cells in Excel on the same
> > > row. For example:
> > >
> > > column A B C D
> > >
> > > 1 x x x o
> > > 2 x x o o
> > > 3 x x x o
> > >
> > > In row 1 I want the information in cell 1D populate the blank cells in
> > > column 1A,1B, and 1C
> > > In row 2 I want the information in cell 2C to poplulate the blank cells in
> > > column 2A and 2B
> > >
> > > Ideally, I want Excel to realize that there are blank cells in a row and
> > > fill those blank cells with the first information it finds on that row.

 
Reply With Quote
 
=?Utf-8?B?SmFzb24gSGFsbA==?=
Guest
Posts: n/a
 
      22nd Oct 2007
This worked but, it worked too well. In otherwords, this is what happen

A B C D E
1 x x x O O
2 x x O x T

On line 1 the code worked great, however, on line 2 the code seen the blank
on D2 and replaced everything on line 2 with E2 "T" over writing C2 "O" and
populating A2 and B2 with "T" instead of "O"


"JLGWhiz" wrote:

> This worked on a small test area:
>
> Sub bckfl()
> Dim x, y As Range
> lr = Cells(Rows.Count, 1).End(xlUp).Row
> i = 2
> For Each y In Range("A2:A" & lr)
> lc = Cells(i, Columns.Count).End(xlToLeft).Column
> For Each x In Range(Cells(i, 1), Cells(i, lc))
> If x = "" And x.Offset(0, 1) = "" Then
> Range("A" & i, x.End(xlToRight).Offset(0, -1)) = x.End(xlToRight).Value
> ElseIf x = "" And x.Offset(0, 1) <> "" Then
> x.Offset(0, 0) = x.Offset(0, 1).Value
> End If
>
> Next x
> i = i + 1
> Next y
> End Sub
>
> Might need some tweaking for your application.
>
> "Jason Hall" wrote:
>
> > I am trying to figure out a way to backfill blank cells in Excel on the same
> > row. For example:
> >
> > column A B C D
> >
> > 1 x x x o
> > 2 x x o o
> > 3 x x x o
> >
> > In row 1 I want the information in cell 1D populate the blank cells in
> > column 1A,1B, and 1C
> > In row 2 I want the information in cell 2C to poplulate the blank cells in
> > column 2A and 2B
> >
> > Ideally, I want Excel to realize that there are blank cells in a row and
> > fill those blank cells with the first information it finds on that row.

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
BackFill Zeros =?Utf-8?B?ZGFsbGlu?= Microsoft Excel Worksheet Functions 1 31st Oct 2006 05:48 PM
macros and cells frustrated Microsoft Excel Programming 5 17th Dec 2005 04:55 PM
How to use macros to copy a range of cells which can exclude some cells which I didn't want to be copied? excelnovice Microsoft Excel Worksheet Functions 2 25th Sep 2005 12:38 AM
Formatting font and backfill on queries =?Utf-8?B?QmV0dGVyZ2FpbnM=?= Microsoft Access Queries 0 10th Nov 2004 11:50 PM
Macros and protected cells Byers Microsoft Excel Misc 2 15th Jul 2004 07:40 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:46 AM.