+ Reply to Thread
Results 1 to 7 of 7

Remove "Alt Enter" blank space

Hybrid View

  1. #1
    crapit
    Guest

    Remove "Alt Enter" blank space

    From a cell, how to remove a "blank line" that is enter by Alt enter
    keystroke!



  2. #2
    crapit
    Guest

    Re: Remove "Alt Enter" blank space

    Using Visual Basic!
    "crapit" <littlecramP@yahoo.com.sg> wrote in message
    news:e%23I5BWGDFHA.1264@TK2MSFTNGP12.phx.gbl...
    > From a cell, how to remove a "blank line" that is enter by Alt enter
    > keystroke!
    >




  3. #3
    JulieD
    Guest

    Re: Remove "Alt Enter" blank space

    Hi

    one way

    Sub removealtenter()
    For Each c In Range("A1:A10")
    c.Value = Application.WorksheetFunction.Substitute(c.Value, Chr(10),
    " ")
    Next
    End Sub

    Cheers
    JulieD

    "crapit" <littlecramP@yahoo.com.sg> wrote in message
    news:OXa7SXGDFHA.936@TK2MSFTNGP12.phx.gbl...
    > Using Visual Basic!
    > "crapit" <littlecramP@yahoo.com.sg> wrote in message
    > news:e%23I5BWGDFHA.1264@TK2MSFTNGP12.phx.gbl...
    >> From a cell, how to remove a "blank line" that is enter by Alt enter
    >> keystroke!
    >>

    >
    >




  4. #4
    crapit
    Guest

    Re: Remove "Alt Enter" blank space

    Wat abt removing it from a 2nd "Alt-Enter" only?
    "JulieD" <JulieD@hctsReMoVeThIs.net.au> wrote in message
    news:uia5UcGDFHA.2032@tk2msftngp13.phx.gbl...
    > Hi
    >
    > one way
    >
    > Sub removealtenter()
    > For Each c In Range("A1:A10")
    > c.Value = Application.WorksheetFunction.Substitute(c.Value,
    > Chr(10), " ")
    > Next
    > End Sub
    >
    > Cheers
    > JulieD
    >
    > "crapit" <littlecramP@yahoo.com.sg> wrote in message
    > news:OXa7SXGDFHA.936@TK2MSFTNGP12.phx.gbl...
    >> Using Visual Basic!
    >> "crapit" <littlecramP@yahoo.com.sg> wrote in message
    >> news:e%23I5BWGDFHA.1264@TK2MSFTNGP12.phx.gbl...
    >>> From a cell, how to remove a "blank line" that is enter by Alt enter
    >>> keystroke!
    >>>

    >>
    >>

    >
    >




  5. #5
    JulieD
    Guest

    Re: Remove "Alt Enter" blank space

    you're welcome .. check out the substitute function either in VBA or normal
    excel help ... it will show how to do this.

    Cheers
    JulieD

    "crapit" <littlecramP@yahoo.com.sg> wrote in message
    news:ea5dYTXJFHA.4028@tk2msftngp13.phx.gbl...
    > Wat abt removing it from a 2nd "Alt-Enter" only?
    > "JulieD" <JulieD@hctsReMoVeThIs.net.au> wrote in message
    > news:uia5UcGDFHA.2032@tk2msftngp13.phx.gbl...
    >> Hi
    >>
    >> one way
    >>
    >> Sub removealtenter()
    >> For Each c In Range("A1:A10")
    >> c.Value = Application.WorksheetFunction.Substitute(c.Value,
    >> Chr(10), " ")
    >> Next
    >> End Sub
    >>
    >> Cheers
    >> JulieD
    >>
    >> "crapit" <littlecramP@yahoo.com.sg> wrote in message
    >> news:OXa7SXGDFHA.936@TK2MSFTNGP12.phx.gbl...
    >>> Using Visual Basic!
    >>> "crapit" <littlecramP@yahoo.com.sg> wrote in message
    >>> news:e%23I5BWGDFHA.1264@TK2MSFTNGP12.phx.gbl...
    >>>> From a cell, how to remove a "blank line" that is enter by Alt enter
    >>>> keystroke!
    >>>>
    >>>
    >>>

    >>
    >>

    >
    >




  6. #6
    Dave Peterson
    Guest

    Re: Remove "Alt Enter" blank space

    Non-macro.

    edit|replace
    what: (hit and hold the alt key and type 0010 from the numeric keypad)
    with: (leave blank or a spacebar???)
    replace all

    It may not look like that alt-0010 did anything, but try it. It'll work.

    As a formula:

    =substitute(a1,char(10),"")
    or
    =substitute(a1,char(10)," ")

    If you want a space character.


    crapit wrote:
    >
    > From a cell, how to remove a "blank line" that is enter by Alt enter
    > keystroke!


    --

    Dave Peterson

  7. #7
    Dave Peterson
    Guest

    Re: Remove "Alt Enter" blank space

    Ah, VBA.

    Never mind.

    Dave Peterson wrote:
    >
    > Non-macro.
    >
    > edit|replace
    > what: (hit and hold the alt key and type 0010 from the numeric keypad)
    > with: (leave blank or a spacebar???)
    > replace all
    >
    > It may not look like that alt-0010 did anything, but try it. It'll work.
    >
    > As a formula:
    >
    > =substitute(a1,char(10),"")
    > or
    > =substitute(a1,char(10)," ")
    >
    > If you want a space character.
    >
    > crapit wrote:
    > >
    > > From a cell, how to remove a "blank line" that is enter by Alt enter
    > > keystroke!

    >
    > --
    >
    > Dave Peterson


    --

    Dave Peterson

+ 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