早上好,
我想使用For循环来比较两张纸的内容,并在条件满足时做一些事情。
For j = 1 To ligne_Brouillon
If InStr(Sheets("Brouillon").Cells(j, 7).Text, Sheets("Data").Cells(i, 18).Text) <> 0 Then 'compare two cells' content
For k = 8 To colonne_brouillon
If InStr(Sheets("Brouillon").Cells(j, k).Text, Sheets("Data").Cells(i, 20).Text) <> 0 Then 'if the first cell contents the keyword
Sheets("Data").Cells(i, ma_Colonne).Text = Sheets("Brouillon").Cells(j, k).Text
End If
Next
End If
Next
但是当我试图运行时,我遇到了错误'1004'。我不知道该解决这个问题。如果你有一些想法,请给我一些建议。 提前谢谢。
当然,我的目标是填写质量控制表,其中包含测试名称和结果。测试和结果在某些文件中单独保留。 我的工作是在我进行新测试时填写表格。对于每个测试点,标准是相同的(例如颜色,形式等),我只需要用正确的结果填充正确的单元格。 我想打开一张新纸张并用所有结果填充它,然后用这张新纸张填充表格。我认为这可能更容易。
以下是完整的代码:
Private Sub Button_Importer_Click()
Sheets.Add After:=Sheets(Sheets.Count)
Sheets(Sheets.Count).Name = "Brouillon"
list_de_controle = "TEXT;" & listPath 'here I have a list to open
For i = 1 To nombre_Ligne 'From the first to the last line in "Data"sheet
mon_Objet = Cells(i, 15).Text + "_" + Cells(i, 17).Text
Open listPath For Input As #1 'open the list of tests
Do While Not EOF(1)
Line Input #1, nom_de_Fich
If InStr(nom_de_Fich, mon_Objet) > 0 Then
'if this file is the correct test file I want to open
mfile = Dir(nom_de_Fich & "*.*")
If mfile <> "" Then
GoTo_Brouillon 'go to the new sheet
Open nom_de_Fich For Input As #2 'open the file
Insérer_contenu
Close #2
End If
compléter_Tableau 'with this new sheet, I will fill the table
End If
Loop
Close #1
Next
End Sub
和Subcompéter_Tableau():
Public Sub compléter_Tableau()
Dim ligne_Brouillon
Sheets("Brouillon").Range("A1").Select
ActiveCell.End(xlDown).Select
ligne_Brouillon = Selection.Row
ActiveCell.End(xlToRight).Select
colonne_brouillon = Selection.Column
For j = 1 To ligne_Brouillon
If InStr(Sheets("Brouillon").Cells(j, 7).Text, Sheets("Data").Cells(i, 18).Text) <> 0 Then
For k = 8 To colonne_brouillon
If InStr(Sheets("Brouillon").Cells(j, k).Text, Sheets("Data").Cells(i, 20).Text) <> 0 Then
Sheets("Data").Cells(i, ma_Colonne).Text = Sheets("Brouillon").Cells(j, k).Text
End If
Next
End If
Next
End Sub
答案 0 :(得分:0)
Private Sub Button_Importer_Click()
Sheets.Add After:=Sheets(Sheets.Count)
Sheets(Sheets.Count).Name = "Brouillon"
list_de_controle = "TEXT;" & listPath 'here I have a list to open
For i = 1 To nombre_Ligne 'From the first to the last line in "Data"sheet
mon_Objet = Cells(i, 15).Text + "_" + Cells(i, 17).Text
Open listPath For Input As #1 'open the list of tests
Do While Not EOF(1)
Line Input #1, nom_de_Fich
If InStr(nom_de_Fich, mon_Objet) > 0 Then
'if this file is the correct test file I want to open
mfile = Dir(nom_de_Fich & "*.*")
If mfile <> "" Then
GoTo_Brouillon 'go to the new sheet
Open nom_de_Fich For Input As #2 'open the file
Insérer_contenu
Close #2
End If
compléter_Tableau i ' pass i into the other sub so it can be used
End If
Loop
Close #1
Next
End Sub
并更改第二个Sub以接受参数,以便它知道i
是什么:
Public Sub compléter_Tableau(byVal i)
Dim ligne_Brouillon
ligne_Brouillon = Sheets("Brouillon").Cells(Sheets("Brouillon").Rows.Count, "A").End(xlUp).Row
colonne_brouillon = Sheets("Brouillon").Cells("A", Sheets("Brouillon").Columns.Count).End(xlToLeft).Column
For j = 1 To ligne_Brouillon
If InStr(Sheets("Brouillon").Cells(j, 7).Text, Sheets("Data").Cells(i, 18).Text) <> 0 Then
For k = 8 To colonne_brouillon
If InStr(Sheets("Brouillon").Cells(j, k).Text, Sheets("Data").Cells(i, 20).Text) <> 0 Then
Sheets("Data").Cells(i, ma_Colonne).Text = Sheets("Brouillon").Cells(j, k).Text
End If
Next
End If
Next
End Sub
我还简化了选择最后一行和列的方法;尽量避免使用ActiveCell
和Select
,因为几乎在任何情况下都不需要它们,并且会减慢速度