DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Sub sonhucrebul()
adr = Split(Selection.Address, ",")
For a = 0 To UBound(adr)
If WorksheetFunction.CountIf(Range(adr(a)), "X") = 0 Then GoTo 10
sat = Range(adr(a)).Find("X").Row
sut = Range(adr(a)).Cells(Range(adr(a)).Cells.Count).Column
MsgBox Cells(sat, sut).Address(0, 0)
10 Next
End Sub
Sub SEÇİLİ_ALANDAKİ_SON_HÜCRE()
Set BUL = Selection.Find("X", LookAt:=xlWhole)
If Not BUL Is Nothing Then
MsgBox Cells(BUL.Row, 256).End(1).Address(0, 0)
End If
End Sub
Sub sonhucresec()
Dim hcr As Range, i As Byte, j As Byte
i = Selection.Columns.Count - 1
j = Selection.Column
For Each hcr In Selection
If hcr.Value = "X" Then
MsgBox Cells(hcr.Row, i + j).Address(0, 0)
End If
Next
End Sub