+ Reply to Thread
Results 1 to 2 of 2

Alignment

Hybrid View

  1. #1
    ED
    Guest

    Alignment

    Posted incorrect question earier.

    Try again




    >> Code please to align wording in a cell such as:


    For c = 1 to 1000
    If cell Ec is greater than 0 the wording in cell Cc is aligned right,
    other wise wording in cell Cc is aligned left.

    Thanks in advance

    Ed English


  2. #2
    Toppers
    Guest

    RE: Alignment

    Sub Align()

    Dim rng As Range, c As Range
    '
    Set rng = Range("e1:e1000")
    For Each c In rng
    If c > 0 Then
    c.Offset(0, -2).HorizontalAlignment = xlRight
    Else
    c.Offset(0, -2).HorizontalAlignment = xlLeft
    End If
    Next c
    End Sub


    HTH

    "ED" wrote:

    > Posted incorrect question earier.
    >
    > Try again
    >
    >
    >
    >
    > >> Code please to align wording in a cell such as:

    >
    > For c = 1 to 1000
    > If cell Ec is greater than 0 the wording in cell Cc is aligned right,
    > other wise wording in cell Cc is aligned left.
    >
    > Thanks in advance
    >
    > Ed English
    >
    >


+ 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