Results 1 to 14 of 14

Delete blank cell to the right

Threaded View

  1. #1
    Registered User
    Join Date
    06-28-2010
    Location
    Posen, Poland
    MS-Off Ver
    Excel 2000
    Posts
    46

    Delete blank cell to the right

    Hi,

    The following codes selected range H1:J13 -

    Sub test()
    'created by NORMAN JONES: http://www.44342.com/MS-EXCEL-f84-t68546-p1.htm
    Cells(1, Columns.Count).End(xlToLeft)(1, 1).Select
    End Sub
    
    Sub sce()
    'CREATED BY PastorMike: http://www.excelbanter.com/showthread.php?t=297162
    Range(Selection, ActiveCell.SpecialCells(xlLastCell)).Select
    
    'keyboard shortcut: shift+ctrl+end: http://www.excelbanter.com/showthread.php?t=297162
    
    'ps. sometimes code select more than last non-blank cell... :(
    
    End Sub
    
    Sub whole()
    Call test
    Call sce
    End Sub
    then I want to (remove blank cells, and) shift non-blank cells to the right (range H1:J13);
    below code shift non-blank cells to left:
    Sub DeleteEmptyCells()
    Selection.SpecialCells(xlCellTypeBlanks).Delete shift:=xlToLeft
    End Sub
    How it will look a code to shift cells to the right?

    ps. see the attach
    Attached Images Attached Images
    Last edited by markos97; 07-09-2013 at 03:52 PM.

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