If Cells(4, 8).Value Like "*10-6*" Then
Cells(y, 8) = Round(Cells(y, 12) / Cells(y, 11) * 1000, 2)
Else
Cells(y, 8) = Round(Cells(y, 12) / Cells(y, 11) * 100, 2)
End If 运行到这是出错 是什么问题
If Cells(4, 9).Value Like "*10-6*" Then
Cells(y, 9) = Round(Cells(y, 13) / Cells(y, 11) * 1000, 2)
Else
Cells(y, 9) = Round(Cells(y, 13) / Cells(y, 11) * 100, 2)
End If
If Cells(4, 10).Value Like "*10-6*" Then
Cells(y, 10) = Round(Cells(y, 14) / Cells(y, 11) * 1000, 2)
Else
Cells(y, 10) = Round(Cells(y, 14) / Cells(y, 11) * 100, 2)
End If
|