Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() using your code with mine (your code was very helpful to me by the way, thank you :-)) this will look in all cells from cell A2 (so it ignores the title cell) and change the value of the cell to 'delete' if it does not equal 'abc'. when this is finshed it will then run your code which deletes the row and shifts it up if the value equals 'delete' ---Sub subname() Dim cell As Range For Each cell In Range("A2:A65536") If cell.Value = "" Then Run ("Del_zero") End Else If cell.Value < "abc" Then cell.Value = "delete" Else End If End If Next End Sub Sub Del_zero() findstring = "delete" Set B = Range("A:A").Find(What:=findstring, LookAt:=xlWhole) While Not (B Is Nothing) B.EntireRow.Delete Set B = Range("A:A").Find(What:=findstring, LookAt:=xlWhole) Wend End Sub --- Thanks John -- johncassell ------------------------------------------------------------------------ johncassell's Profile: http://www.excelforum.com/member.php...o&userid=25016 View this thread: http://www.excelforum.com/showthread...hreadid=565629 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() hi man, no work man, how to integrate both into one function and work great. thank yo -- vumia ----------------------------------------------------------------------- vumian's Profile: http://www.excelforum.com/member.php...fo&userid=3649 View this thread: http://www.excelforum.com/showthread.php?threadid=56562 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() hi man, do you know this, help me pls i've got this function to check another file opened ? Public Function gbIsWBOpen(rsName As String) As Boolean On Error Resume Next gbIsWBOpen = Len(Workbooks(rsName).Name) On Error GoTo 0 End Function sub check_open if gbIsWBOpen("abc.xls").active = true then 'do function else msgbox "error" end if end sub what's wrong with this man ? thank you. -- vumian ------------------------------------------------------------------------ vumian's Profile: http://www.excelforum.com/member.php...o&userid=36494 View this thread: http://www.excelforum.com/showthread...hreadid=565629 |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() hi man, do you know this, help me pls i've got this function to check another file opened ? Public Function gbIsWBOpen(rsName As String) As Boolean On Error Resume Next gbIsWBOpen = Len(Workbooks(rsName).Name) On Error GoTo 0 End Function sub check_open if gbIsWBOpen("abc.xls").active = true then 'do function else msgbox "error" end if end sub what's wrong with this man ? thank you. -- vumian ------------------------------------------------------------------------ vumian's Profile: http://www.excelforum.com/member.php...o&userid=36494 View this thread: http://www.excelforum.com/showthread...hreadid=565629 |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Look at the example in my reply in your other thread
You can test if a file is open with this function Function bIsBookOpen(ByRef szBookName As String) As Boolean ' Rob Bovey On Error Resume Next bIsBookOpen = Not (Application.Workbooks(szBookName) Is Nothing) End Function Use like this If bIsBookOpen("test.xls") Then -- Regards Ron de Bruin http://www.rondebruin.nl "vumian" wrote in message ... hi man, do you know this, help me pls i've got this function to check another file opened ? Public Function gbIsWBOpen(rsName As String) As Boolean On Error Resume Next gbIsWBOpen = Len(Workbooks(rsName).Name) On Error GoTo 0 End Function sub check_open if gbIsWBOpen("abc.xls").active = true then 'do function else msgbox "error" end if end sub what's wrong with this man ? thank you. -- vumian ------------------------------------------------------------------------ vumian's Profile: http://www.excelforum.com/member.php...o&userid=36494 View this thread: http://www.excelforum.com/showthread...hreadid=565629 |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Sub checkisopen() On Error Resume Next If Application.Workbooks("abc.xls") Is Nothing Then MsgBox ("abc.xls is not open") Else MsgBox ("abc.xls is open") End If End Sub thanks Joh -- johncassel ----------------------------------------------------------------------- johncassell's Profile: http://www.excelforum.com/member.php...fo&userid=2501 View this thread: http://www.excelforum.com/showthread.php?threadid=56562 |
#7
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
For other examples see
http://www.rondebruin.nl/delete.htm -- Regards Ron de Bruin http://www.rondebruin.nl "vumian" wrote in message ... hi man, no work man, how to integrate both into one function and work great. thank you -- vumian ------------------------------------------------------------------------ vumian's Profile: http://www.excelforum.com/member.php...o&userid=36494 View this thread: http://www.excelforum.com/showthread...hreadid=565629 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Hpw do I delete multiple empty rows found between filled rows? | Excel Worksheet Functions | |||
Cut filtered rows, paste into next empty row of new sheet, and delete cut rows | Excel Worksheet Functions | |||
Delete rows with numeric values, leave rows with text | Excel Programming | |||
How to delete rows when List toolbar's "delete" isnt highlighted? | Excel Worksheet Functions | |||
Delete every 3rd row, then delete rows 2-7, move info f/every 2nd row up one to the end and delete the row below | Excel Programming |