+ Reply to Thread
Results 1 to 2 of 2

Syntax help with range

  1. #1
    ZZBC
    Guest

    Syntax help with range

    I am having trouble with variables/syntax in trying to copy and shift
    data from one worksheet to another (Excel 2000)
    My Input sheet data is a single column
    My Output sheet (in this case) is 2 columns.

    Hopefully you can see what I am trying to do with this 'crude' code:

    Private Sub Worksheet_Change(ByVal Target As Range)
    Dim NewTarget As Range
    If Target.Column <> 1 Then Exit Sub
    With Sheets("Output")
    NewRow = (Target.Row + (Target.Row - 1) * 3)
    NewTarget.Row = NewRow
    If Target.Row >= 18 Then
    NetTarget.Column = 2
    Else
    NetTarget.Column = 1
    End If
    .Range(NewTarget.Address).Value = Target.Value
    End With
    End Sub

  2. #2
    Toppers
    Guest

    RE: Syntax help with range

    Try this:


    Private Sub Worksheet_Change(ByVal Target As Range)
    Dim NewRow As Long, NewColumn As Integer
    On Error GoTo ws_exit:
    Application.EnableEvents = False
    If Target.Column <> 1 Then Exit Sub
    With Sheets("Output")
    NewRow = (Target.Row + (Target.Row - 1) * 3)
    If Target.Row >= 18 Then
    NewColumn = 2
    Else
    NewColumn = 1
    End If
    .Cells(NewRow, NewColumn).Value = Target.Value
    End With
    ws_exit:
    Application.EnableEvents = True
    End Sub


    HTH

    "ZZBC" wrote:

    > I am having trouble with variables/syntax in trying to copy and shift
    > data from one worksheet to another (Excel 2000)
    > My Input sheet data is a single column
    > My Output sheet (in this case) is 2 columns.
    >
    > Hopefully you can see what I am trying to do with this 'crude' code:
    >
    > Private Sub Worksheet_Change(ByVal Target As Range)
    > Dim NewTarget As Range
    > If Target.Column <> 1 Then Exit Sub
    > With Sheets("Output")
    > NewRow = (Target.Row + (Target.Row - 1) * 3)
    > NewTarget.Row = NewRow
    > If Target.Row >= 18 Then
    > NetTarget.Column = 2
    > Else
    > NetTarget.Column = 1
    > End If
    > .Range(NewTarget.Address).Value = Target.Value
    > End With
    > End Sub
    >


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1