Hi all,
I have two excel sheet. one contains live data and another contains archive data.
after completing data entry for every row I move the row contents from excel 1 to excel 2. since both the excel workbooks are used by many people, I have protected them password.
During moving the data, the macro automatically unprotectes both the excel workbooks and moves the row content to excel 2 and protects again saves. excel 2 is opened through macro and closed with VBA code written in excel 1.
Problem: when the excel 2 is opened "read only"/ normaly by somebody, and some one else tries to move the row content to excel 2, it tries to open the read only file again and moves the data to new read only file. due to this the data is lost.
solution needed: I want to know the VBA code to check if the excel 2 is already opened by somebody as read only and if opened, quit the program with a message "excel 2 is already opened, try later after closing excel 2", and if excel 2 is not opened, continue with row content movement from excel 1 to excel 2.

could somebody help with VBA code ?

code used in excel 1:
Sub Archive()
'
' Archive Macro
' move completed records to another workbook and protect them
'
    Dim a, b
    Dim test1 As String
    Dim FoundRange As Range
    FinalRow = Cells(Rows.Count, 1).End(xlUp).Row
    
    
    Application.ScreenUpdating = False
'   Check if the file is opened as READ Only and quit the program, else run the macro.
    If ActiveWorkbook.ReadOnly Then
        MsgBox "File is opened as READ ONLY"
    Exit Sub
    Else
    Application.Run "'excel 1.xlsm'!Normal"
'   Check if the worksheet contains completed data and run the macro, else quit
    test1 = "completed_a"
    Set FoundRange = Sheets("data").Cells.Find(what:=test1, After:=ActiveCell, LookIn:=xlValues, _
        lookat:=xlPart, SearchOrder:=xlByColumns, SearchDirection:=xlNext, _
        MatchCase:=False, SearchFormat:=False)
    If FoundRange Is Nothing Then
        MsgBox ("No completed data !")
    Exit Sub
    Else
    Workbooks.Open Filename:= _
        "Q:\Laboratory\Physical Lab\Lab Logs and Holds\excel 2.xlsm", writerespassword:="xxxxx"
    Sheets("Data").Select    ActiveSheet.Unprotect Password:="xxx"
    Columns("az:ba").Select
    Selection.EntireColumn.Hidden = False
    Columns("cd:co").Select
    Selection.EntireColumn.Hidden = False
    Windows("excel 1.xlsm").Activate
    Application.Run "'excel 1.xlsm'!Normal"
    Range("G3").Select
    ActiveSheet.Unprotect Password:="xxx"
    Cells.Find(what:="completed_a", After:=ActiveCell, LookIn:=xlValues, _
        lookat:=xlPart, SearchOrder:=xlByColumns, SearchDirection:=xlNext, _
        MatchCase:=False, SearchFormat:=False).Activate
    ActiveCell.Rows("1:1").EntireRow.Select
    Selection.Cut
    Windows("excel 1.xlsm").Activate
    Sheets("Data").Select
    Range("A1").Select
    ..
...
.
.
.
.
.    
end if 
end if
end sub
Regards, sathyaganapathi