I think if i write a macro which will select cells with values and then
I copy and past it ,it will be working.
but i have a problem with macro, which will select non empty cells.
i wrote something like this....
Sub test()
Dim myRng As Range
Dim cel As Range
Set myRng = Range("D1:D20")
For Each cel In myRng
If cel.Value < 0 Then
cel.Select
End If
Next cel
End Sub
but it doesnt work very well....
please help....
tommy
--
tommy_gtr
------------------------------------------------------------------------
tommy_gtr's Profile:
http://www.excelforum.com/member.php...o&userid=26089
View this thread:
http://www.excelforum.com/showthread...hreadid=474106