ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Help with If/then macro in VBA (https://www.excelbanter.com/excel-programming/332326-help-if-then-macro-vba.html)

dstock[_12_]

Help with If/then macro in VBA
 

I've tried for about 2 days now to get this code right and can't see
to. What I'm trying to do is after the value of a cell reaches <1, i
will cut and paste the entire row after it. Therefore its values wil
be erased in the process. The example will illustrate this, the shee
will essentially just roll foward rows after the specified days = 0.

My thoughs were if sheet1:A1<1, then copy row A2, erase A1

The file attached provides a clear example. I know attachments aren'
preferred but the formatting gets messed up when I try and copy an
paste from excel.

Any help is appreciated

+-------------------------------------------------------------------
|Filename: excelforum example4.zip
|Download: http://www.excelforum.com/attachment.php?postid=3519
+-------------------------------------------------------------------

--
dstoc
-----------------------------------------------------------------------
dstock's Profile: http://www.excelforum.com/member.php...fo&userid=2422
View this thread: http://www.excelforum.com/showthread.php?threadid=38062


mangesh_yadav[_350_]

Help with If/then macro in VBA
 

Insert a commanbutton from the Control ToolBox menu. And attach the
following code:

Private Sub CommandButton1_Click()

Range("B11") = Range("B11") - 2
If Range("B11") < 1 Then
Range("B11").EntireRow.Delete
Range("B11") = Range("B11") - 2
End If

End Sub


Mangesh


--
mangesh_yadav
------------------------------------------------------------------------
mangesh_yadav's Profile: http://www.excelforum.com/member.php...o&userid=10470
View this thread: http://www.excelforum.com/showthread...hreadid=380628



All times are GMT +1. The time now is 04:07 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com