![]() |
|
#6
|
|||
|
|||
|
HI,
Here's a code that may work. It's a modified version of a code the "NoSpark" created. Copy and paste to code module. Code:
Sub DeleteBlank()
'''Modified code that "NoSparks created.
' remove rows with blank in column "B"
With Application
.ScreenUpdating = False
.Calculation = xlCalculationManual
End With
'delete rows where B is blank
Range("B1", Cells(Rows.Count, "B").End(xlUp)).SpecialCells(xlBlanks).EntireRow.Delete
With Application
.ScreenUpdating = True
.Calculation = xlCalculationAutomatic
End With
End Sub
Last edited by charlesdh; 10-01-2016 at 05:06 PM. Reason: removed text |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| how can I make a ScrollBar &/or a SpinButton display values? | jeffk | Excel | 3 | 01-04-2016 04:25 AM |
Format Chart X axis - inconsistent values
|
TimTDP | Excel | 2 | 12-01-2015 02:56 AM |
Is it possible to make such chart in Word?
|
am0 | Word | 3 | 12-12-2014 02:13 AM |
Generate chart from list of text values
|
knownunknown | Excel | 6 | 04-24-2013 01:56 AM |
| Word chart with words for y-values? | Computerbum | Office | 0 | 09-19-2011 07:09 PM |