amma.NETtami

.NET walkabout
posts - 11, comments - 18, trackbacks - 0

ottobre 2008 Blog Posts

Contrarre una selection (range) in Excel

Semplice funzione per Excel che consente di contrarre di n righe una selection (per intenderci, un range di celle) . Risulta utile anche per spostarsi in su od in giù di n righe se la selection corrente è una singola cella. Function CropSelection(Rows As Long) As Boolean Dim sSelection As String Dim iDollarPosition As Long Dim sRow As String Dim lRow As Long On Error GoTo CropSelection_Error sSelection = Selection.Address() iDollarPosition = InStrRev(sSelection, "$") sRow = Mid(sSelection, iDollarPosition + 1) lRow = CLng(sRow) - Rows ...

posted @ lunedì 20 ottobre 2008 23:42 | Feedback (0) | Filed Under [ VBA ]

Powered by:
Powered By Subtext Powered By ASP.NET