Microsoft Office Forums

Go Back   Microsoft Office Forums > >

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #7  
Old 10-02-2016, 11:18 AM
charlesdh charlesdh is offline How can I make a table or chart to interpolate between values? Windows 7 32bit How can I make a table or chart to interpolate between values? Office 2010 32bit
Expert
 
Join Date: Apr 2014
Location: Mississippi
Posts: 382
charlesdh is on a distinguished road
Default

Hi,

I erred on the previous code posted. The following code should work.

Code:
Sub DeleteBlank()
' remove rows with blank in column "B"

With Application
    .ScreenUpdating = False
    .Calculation = xlCalculationManual
End With


For Each cell In Range("A1", Cells(Rows.Count, "A").End(xlUp))
If Cells(cell.Row, 2).Value = "" Then
    Cells(cell.Row, 2).EntireRow.Delete
End If
Next
With Application
    .ScreenUpdating = True
    .Calculation = xlCalculationAutomatic
End With

End Sub
Reply With Quote
 



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
How can I make a table or chart to interpolate between values? Format Chart X axis - inconsistent values TimTDP Excel 2 12-01-2015 02:56 AM
How can I make a table or chart to interpolate between values? Is it possible to make such chart in Word? am0 Word 3 12-12-2014 02:13 AM
How can I make a table or chart to interpolate between values? 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

Other Forums: Access Forums

All times are GMT -7. The time now is 03:48 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft