ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   help with this code (https://www.excelbanter.com/excel-programming/367823-help-code.html)

VBA Noob[_28_]

help with this code
 

Looking to see if range contains a entry then clear the area calle
Clear

Any ideas greatfully received
Sub Macro7()

If Range("Clear_Area").Value < "-" Then
Range("Clear").ClearContents
End If
End Sub

VBA noo

--
VBA Noo
-----------------------------------------------------------------------
VBA Noob's Profile: http://www.excelforum.com/member.php...fo&userid=3383
View this thread: http://www.excelforum.com/showthread.php?threadid=56331


jetted[_11_]

help with this code
 

Hi VBA

Would this help

Sub keepdash()
Dim Cell As Range
Dim R As Range
Set R = ActiveSheet.UsedRange
'SearchChar = "-"
For Each Cell In R
valeur = Cell.Value
MyPos = InStr(1, valeur, "-")
If MyPos = 0 Then
Cell.Clear
End If
Next
End Su

--
jette
-----------------------------------------------------------------------
jetted's Profile: http://www.excelforum.com/member.php...fo&userid=1753
View this thread: http://www.excelforum.com/showthread.php?threadid=56331


VBA Noob[_29_]

help with this code
 

Tried it on sheet and clear a lot of my data.

Must be a easier way to select A5 to L9 to check if there is text apart
from "-" which are in A5 to A9

Thanks in advance

VBA noob


--
VBA Noob
------------------------------------------------------------------------
VBA Noob's Profile: http://www.excelforum.com/member.php...o&userid=33833
View this thread: http://www.excelforum.com/showthread...hreadid=563316



All times are GMT +1. The time now is 05:01 AM.

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