Results 1 to 7 of 7

Delete cell content if find a space in relative cell reference

Threaded View

  1. #1
    Forum Contributor
    Join Date
    07-24-2013
    Location
    HongKong
    MS-Off Ver
    Excel 2010
    Posts
    237

    Delete cell content if find a space in relative cell reference

    Dear all,

    The Sub below find all the space in column C and delete the cell contents. How can I rewrite it in relative cell reference so that column C deleted when this Sub starts at cell A1, or space in column G deleted when this Sub starts at E1 etc....

    thank you


    Sub Deletions()
    Dim Rng As Range, cell As Range
    
    'Delete cells with Value set
    
        Set Rng = Range("C:C")
            For Each cell In Rng
                If cell.Value = " " Then cell.ClearContents
            Next cell
    
    End Sub
    Last edited by Leith Ross; 03-04-2015 at 09:14 PM. Reason: Added Code Tagfs

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Find rows to delete with a macro based on cell content
    By mkraffert in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 08-28-2013, 06:27 PM
  2. Macro to sum all space delimited content of a cell?
    By lexluthor in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 11-12-2010, 08:05 AM
  3. Sorting with relative number by Cell content value
    By excelbaba in forum Excel - New Users/Basics
    Replies: 2
    Last Post: 05-01-2010, 08:04 PM
  4. [SOLVED] minimizing space between cell content for printing
    By marina in forum Excel General
    Replies: 2
    Last Post: 08-03-2006, 08:35 AM
  5. minimizing space between cell content for printing
    By me in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 08-02-2006, 05:45 PM

Tags for this Thread

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