+ Reply to Thread
Results 1 to 3 of 3

Filling in Blank cells in CurrentRegion

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    05-09-2013
    Location
    United Kingdom
    MS-Off Ver
    Excel 2013
    Posts
    259

    Filling in Blank cells in CurrentRegion

    Hello, I'm having a few problems with filling in Blanks with a 0. I have the following code so far. Any help appreciated.


    Sub Fill_Blanks()
    
    Dim cell As Range
    
    For Each cell In Range("B4").CurrentRegion
    
    If cell.SpecialCells(xlCellTypeBlanks) Then
    
    cell.Value = 0
    End If
    
    Next cell
    
    End Sub
    Last edited by Hurricanefly; 05-19-2013 at 11:59 AM.

  2. #2
    Forum Guru HaHoBe's Avatar
    Join Date
    02-19-2005
    Location
    Hamburg, Germany
    MS-Off Ver
    work: 2016 on Win10 (notebook), private: 365 on Win11 (desktop), 2019 on Win11 (notebook)
    Posts
    8,198

    Re: Filling in Blank cells in CurrentRegion

    Hi, Hurricanefly,

    if the cells are really blanks:
    Sub Fill_Blanks()
    
    On Error Resume Next
    Range("B4").CurrentRegion.SpecialCells(xlCellTypeBlanks).Value = 0
    
    End Sub
    Ciao,
    Holger
    Use Code-Tags for showing your code: [code] Your Code here [/code]
    Please mark your question Solved if there has been offered a solution that works fine for you

  3. #3
    Forum Contributor
    Join Date
    05-09-2013
    Location
    United Kingdom
    MS-Off Ver
    Excel 2013
    Posts
    259

    Re: Filling in Blank cells in CurrentRegion

    Thanks, I thought it was easier than what I was trying

+ 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