thank you for the quick reply!! if you see my other post about deleting cells, you will see the problem I am having.
Posts by bksmith101
-
-
Is there a way to insert a blank cell?
Thanks
-
Okay, I got the loop to stop by adding to my code as below:
Private Sub Worksheet_Change(ByVal Target As Range)
Dim rcell As RangeFor Each rcell In Range("A3", "M17")
If rcell.Value <> "" Then
If rcell.Value < Now Then
rcell.ClearContents
End If
End If
Next
End SubNow, can anyone help with moving the remaining values up. Let's say I had July 2 in cell A3 and July 12 in A4. When A3 is cleared how do I move up the data in A4?
Thanks
-
The last code i put in is also causing a never ending loop.... Please Help
-
So far I can delete the information in the cell but cannot get the other cells to move up:
Private Sub Worksheet_Change(ByVal Target As Range)
Dim rcell As RangeFor Each rcell In Range("$A$3", "$M$17")
If rcell.Value < Now Then
rcell.ClearContents
End If
Next
End Sub -
I have a range called "Dates". What I would like to happen is that if any date in the range is older than today(), it would delete the information and move up everything else.
Any suggestions?
Thanks
-
Duh!! Never mind. Thanks for the help!
-
How do I clear the list after another selection is chosen?
Thanks
-
This is EXACTLY what I was trying to do!!!
Thanks for the help!!
-
I am trying to populate multiple cells from a combo box. I would like one of the options in the combo box to be a "list all". When this is chosen, I would like Excel to list in other cells all values contained in the combo box.
Any help??
Thanks
-
I am working on a file where I need to show a comment IF "Show Breakdown" is selected from a validation list in cell D5.
I am having lots of problems with this. Can anyone help?
Thanks