Results 1 to 6 of 6

Dynamic insertion or deleting of blank cells

Threaded View

  1. #3
    Registered User
    Join Date
    12-07-2012
    Location
    london england
    MS-Off Ver
    Excel 2010
    Posts
    21

    Re: Dynamic insertion or deleting of blank cells

    Hi Bernie,

    Firstly many thanks for taking the time to respond,

    Ive made a start with my code, and im pretty much there, the only I need to do now, is if I add blank cells, below, so if ive changed it from 100% to 50% I need it to copy the data from the above cell, past below, but split the value in half etc.

    Below is my code

    Sub InsertRowsOnValue()
    
    Dim r As Long, lr As Long
    Dim deleterow As Long
    Dim ws As Worksheet
    Set ws = ActiveSheet
    
    
    
    Application.ScreenUpdating = False
    For deleterow = ws.Range("M" & Rows.Count).End(xlUp).Row To 6 Step -1
    If ws.Range("M" & deleterow).Offset(0, -1).Value = "" Then
    Rows(deleterow).EntireRow.Delete
    End If
    Next deleterow
    
    
    
    With ws
    
    
      lr = .Cells(Rows.Count, "L").End(xlUp).Row
      For r = lr To 6 Step -1
        If IsNumeric(.Cells(r, "L")) And .Cells(r, "L") > 0 Then
          .Rows(r + 1).Resize(.Cells(r, "L").Value).Insert
        End If
      Next r
    End With
    Application.ScreenUpdating = True
    End Sub
    im trying to figure out how to attach an example!!
    Attached Files Attached Files

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Deleting Dynamic Blank Rows with Formulas
    By sherylt13 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 11-19-2017, 09:45 AM
  2. Dynamic formulas insertion with VBA
    By QuentinChina in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 08-12-2013, 04:17 AM
  3. deleting blank cells
    By bostonguy in forum Excel General
    Replies: 2
    Last Post: 01-31-2012, 11:47 AM
  4. Advanced filter with blank cells / Dynamic named range with blank cells
    By Jason_2112 in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 11-15-2010, 12:06 PM
  5. Dynamic Formulas and Sheet Insertion
    By nschmoyer in forum Excel General
    Replies: 4
    Last Post: 04-28-2009, 05:53 PM
  6. Deleting blank cells
    By Cononach in forum Excel General
    Replies: 4
    Last Post: 06-02-2007, 05:27 PM
  7. Deleting blank cells
    By savbci in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 07-29-2005, 02:06 PM

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