I am looking if anyone knows of a LIVE function or sub that would give the Cell Address in the numeric format(I am not sure the technical name for it). But lets say I select A1 - in the status bar it would I would see "Cell(1,1)"
I thought of it when I found something someone had wrote that gives something similar to the COUNT: MIN: MAX:...features already built in
I thought of it when I found something someone had wrote that gives something similar to the COUNT: MIN: MAX:...features already built in
Code:
Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, _
ByVal Target As Range)
On Error GoTo ErrHandler:
With Application
.StatusBar = "Sum: " & Application.Sum(Target) & " | " _
& "Count(Nums): " & .WorksheetFunction.Count(Target) _
& " | Count(items): " & Application.CountA(Target) _
& " | Average: " & Application.Average(Target)
End With
Exit Sub
ErrHandler:
Application.StatusBar = False
End Sub