理解しやすくコード化するために、以下にVBAコードの例を示します。この例では、提供された処理概要と処理詳細を元に、指定された条件に従って比較対象の情報を取得するコードを作成しています。

```vba
Sub ProcessData()
    Dim ws As Worksheet
    Dim lastRow As Long
    Dim i As Long, x As Long
    Dim currentOrder As String
    Dim currentCategory As String
    Dim currentAddress As String
    Dim compareCategory As String
    Dim compareAddress As String
    
    ' シートを設定
    Set ws = ThisWorkbook.Worksheets("シート名") ' 適切なシート名に変更
    
    ' 最終行を取得
    lastRow = ws.Cells(ws.Rows.Count, "O").End(xlUp).Row
    
    ' 2行目から最終行まで処理
    For i = 2 To lastRow
        ' 処理中の注文番号を取得
        currentOrder = ws.Cells(i, "O").Value
        
        ' 処理中のカテゴリーNoを取得
        currentCategory = Left(ws.Cells(i, "AM").Value, 2)
        
        ' 処理中の宛先を取得
        currentAddress = ws.Cells(i, "AG").Value & ws.Cells(i, "AH").Value & ws.Cells(i, "AI").Value & _
                         ws.Cells(i, "AJ").Value & ws.Cells(i, "AK").Value & ws.Cells(i, "AL").Value
        
        If i = 2 Then
            ' 1行目の場合は特殊処理
            compareAddress = "0"
        Else
            ' iより上の行を1行ずつ比較
            For x = i - 1 To 2 Step -1
                If ws.Cells(x, "O").Value = currentOrder Then
                    compareCategory = Left(ws.Cells(x, "AM").Value, 2)
                    If compareCategory = "02" Then
                        compareAddress = ws.Cells(x, "AG").Value & ws.Cells(x, "AH").Value & _
                                         ws.Cells(x, "AI").Value & ws.Cells(x, "AJ").Value & _
                                         ws.Cells(x, "AK").Value & ws.Cells(x, "AL").Value
                        Exit For ' 比較が成功したらループを抜ける
                    End If
                End If
            Next x
        End If
        
        ' 得られた情報を表示(ここではデバッグ用に即時ウィンドウに表示)
        Debug.Print "処理中の注文番号:" & currentOrder
        Debug.Print "処理中のカテゴリーNo:" & currentCategory
        Debug.Print "処理中の宛先:" & currentAddress
        Debug.Print "比較対象の宛先:" & compareAddress
        Debug.Print "-------------------------"
        
        ' TODO: 得られた情報を必要な形式で保存または処理する
    Next i
End Sub
```

このコードでは、シート名やセルの列番号は適切に変更する必要があります。また、デバッグ用に即時ウィンドウに情報を表示していますが、必要に応じてこの部分を適宜修正してください。最終的に、取得した情報を必要な形式で保存するか、他の処理に使用する部分を追加してください。