| 
			Option Explicit 
 
Sub FindUsedRange() 
     
    Dim Rng1            As Range 
     
    Set Rng1 = RealUsedRange 
    If Rng1 Is Nothing Then 
        MsgBox "There is no used range, the worksheet is empty." 
    Else 
        MsgBox "The real used range is: " & Rng1.Address 
    End If 
     
End Sub 
 
Public Function RealUsedRange() As Range 
     
    Dim FirstRow        As Long 
    Dim LastRow         As Long 
    Dim FirstColumn     As Integer 
    Dim LastColumn      As Integer 
     
    On Error Resume Next 
     
    FirstRow = Cells.Find(What:="*", After:=Range("IV65536"), LookIn:=xlValues, LookAt:= _ 
    xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext).Row 
     
    FirstColumn = Cells.Find(What:="*", After:=Range("IV65536"), LookIn:=xlValues, LookAt:= _ 
    xlPart, SearchOrder:=xlByColumns, SearchDirection:=xlNext).Column 
     
    LastRow = Cells.Find(What:="*", After:=Range("A1"), LookIn:=xlValues, LookAt:= _ 
    xlPart, SearchOrder:=xlByRows, SearchDirection:=xlPrevious).Row 
     
    LastColumn = Cells.Find(What:="*", After:=Range("A1"), LookIn:=xlValues, LookAt:= _ 
    xlPart, SearchOrder:=xlByColumns, SearchDirection:=xlPrevious).Column 
     
    Set RealUsedRange = Range(Cells(FirstRow, FirstColumn), Cells(LastRow, LastColumn)) 
     
    On Error GoTo 0 
     
End Function 
 
 |