Como proteger com senha vários arquivos do Excel 2007 com várias senhas usando uma macro?

0

Eu sou novo aqui, então, por favor, deixe-me saber se o meu post está incorreto ou algo assim.

Atualmente, tenho uma macro que divide um arquivo do Excel em vários arquivos e os salva separadamente. Este passo eu encontrei uma resposta e estou muito feliz com.

Eu preciso que esses arquivos sejam protegidos por senha, por isso, quando eu os envio para os clientes, sinto que estão sendo transmitidos com segurança. Existe uma macro que eu posso escrever / usar para realizar este truque para mim.

Meu arquivo do Excel A guia 1 armazena todos os meus dados e divide atualmente tudo com base na coluna A.

John Test1
John Test2
John Test3
Alex Test4
Alex Test5
Frank Test6
Frank Test7

A macro que eu uso divide isso em arquivos separados por John / Alex / Frank, que mostra apenas os dados deles com nenhum dos outros dados individuais.

Eu também tenho a guia 2 que contém todas as senhas:

John Pw1
Alex Pw2
Frank Pw3

Estou procurando uma maneira de ter as senhas listadas na guia 2 para serem aplicadas aos documentos recém-criados durante o processo da macro atual.

Qualquer ajuda sobre isso seria muito apreciada. Deixe-me saber se alguma das perguntas que eu fiz não está clara.

Para referência, vou citar o código que encontrei do usuário mtone, porque este é o código que estou usando no momento. Este código tem sido muito útil para mim e estou extremamente agradecido pela mtone por postar. Eu não acredito que eu possa enviar uma mensagem privada para mim, mas se eu pudesse, eu agradeceria profusamente!

    Public Sub SplitToFiles()

    ' MACRO SplitToFiles
    ' Last update: 2012-03-04
' Author: mtone
' Version 1.1
' Description:
' Loops through a specified column, and split each distinct values into a separate file by making a copy and deleting rows below and above
'
    ' Note: Values in the column should be unique or sorted.
'
' The following cells are ignored when delimiting sections:
' - blank cells, or containing spaces only
' - same value repeated
' - cells containing "total"
'
' Files are saved in a "Split" subfolder from the location of the source workbook, and named after the section name.

Dim osh As Worksheet ' Original sheet
Dim iRow As Long ' Cursors
Dim iCol As Long
Dim iFirstRow As Long ' Constant
Dim iTotalRows As Long ' Constant
Dim iStartRow As Long ' Section delimiters
Dim iStopRow As Long
Dim sSectionName As String ' Section name (and filename)
Dim rCell As Range ' current cell
Dim owb As Workbook ' Original workbook
Dim sFilePath As String ' Constant
Dim iCount As Integer ' # of documents created

iCol = Application.InputBox("Enter the column number used for splitting", "Select column", 2, , , , , 1)
iRow = Application.InputBox("Enter the starting row number (to skip header)", "Select row", 5, , , , , 1)
iFirstRow = iRow

Set osh = Application.ActiveSheet
Set owb = Application.ActiveWorkbook
iTotalRows = osh.UsedRange.Rows.Count
sFilePath = Application.ActiveWorkbook.Path

If Dir(sFilePath + "\Split", vbDirectory) = "" Then
MkDir sFilePath + "\Split"
End If

'Turn Off Screen Updating  Events
Application.EnableEvents = False
Application.ScreenUpdating = False

Do
' Get cell at cursor
Set rCell = osh.Cells(iRow, iCol)
sCell = Replace(rCell.Text, " ", "")

If sCell = "" Or (rCell.Text = sSectionName And iStartRow <> 0) Or InStr(1, rCell.Text, "total", vbTextCompare) <> 0 Then
    ' Skip condition met
Else
    ' Found new section
    If iStartRow = 0 Then
        ' StartRow delimiter not set, meaning beginning a new section
        sSectionName = rCell.Text
        iStartRow = iRow
    Else
        ' StartRow delimiter set, meaning we reached the end of a section
        iStopRow = iRow - 1

        ' Pass variables to a separate sub to create and save the new worksheet
        CopySheet osh, iFirstRow, iStartRow, iStopRow, iTotalRows, sFilePath, sSectionName, owb.fileFormat
        iCount = iCount + 1

        ' Reset section delimiters
        iStartRow = 0
        iStopRow = 0

        ' Ready to continue loop
        iRow = iRow - 1
    End If
End If

' Continue until last row is reached
If iRow < iTotalRows Then
        iRow = iRow + 1
Else
    ' Finished. Save the last section
    iStopRow = iRow
    CopySheet osh, iFirstRow, iStartRow, iStopRow, iTotalRows, sFilePath, sSectionName, owb.fileFormat
    iCount = iCount + 1

    ' Exit
    Exit Do
End If
Loop

'Turn On Screen Updating  Events
Application.ScreenUpdating = True
Application.EnableEvents = True

       MsgBox Str(iCount) + " documents saved in " + sFilePath


End Sub

Public Sub DeleteRows(targetSheet As Worksheet, RowFrom As Long, RowTo As Long)

    Dim rngRange As Range
Set rngRange = Range(targetSheet.Cells(RowFrom, 1), targetSheet.Cells(RowTo, 1)).EntireRow
rngRange.Select
rngRange.Delete

End Sub


Public Sub CopySheet(osh As Worksheet, iFirstRow As Long, iStartRow As Long, iStopRow As Long, iTotalRows As Long, sFilePath As String, sSectionName As String, fileFormat As XlFileFormat)
 Dim ash As Worksheet ' Copied sheet
 Dim awb As Workbook ' New workbook

 ' Copy book
 osh.Copy
 Set ash = Application.ActiveSheet

 ' Delete Rows after section
 If iTotalRows > iStopRow Then
     DeleteRows ash, iStopRow + 1, iTotalRows
 End If

 ' Delete Rows before section
 If iStartRow > iFirstRow Then
     DeleteRows ash, iFirstRow, iStartRow - 1
 End If

 ' Select left-topmost cell
 ash.Cells(1, 1).Select

 ' Clean up a few characters to prevent invalid filename
 sSectionName = Replace(sSectionName, "/", " ")
 sSectionName = Replace(sSectionName, "\", " ")
 sSectionName = Replace(sSectionName, ":", " ")
 sSectionName = Replace(sSectionName, "=", " ")
 sSectionName = Replace(sSectionName, "*", " ")
 sSectionName = Replace(sSectionName, ".", " ")
 sSectionName = Replace(sSectionName, "?", " ")

 ' Save in same format as original workbook
 ash.SaveAs sFilePath + "\Split\" + sSectionName, fileFormat

 ' Close
 Set awb = ash.Parent
 awb.Close SaveChanges:=False
End Sub
    
por Mike 23.04.2012 / 18:01

1 resposta

0

I need these files to be password protected so when I email them out to clients I feel that they are being transmitted securely.

A senha que protege os arquivos do Excel não deve ser considerada segura. Existem várias opções on-line para quebrar esse tipo de documento, e até versões mais recentes do Excel ainda têm vulnerabilidades de segurança. Se os arquivos contiverem dados confidenciais, você deve considerar algum outro tipo de criptografia, como o PGP .

    
por 30.04.2012 / 18:46