- Tham gia
- 12/6/06
- Bài viết
- 3,184
- Được thích
- 7,633
Tôi có làm code sau nhưng với các dấu +,-,* đều thực hiện được nhưng với dâu / ( chia) thì không. Tôi tìm hoài chẳng biết do đâu mong mọi người giải thích giúp.
'Chen cong thuc vao dong tong
Dim CL As Object
Set zonac = Range(Cells(11, 1), Cells(65536, 2).End(xlUp))
For Each CL In zonac
If CL.Value = "" Then
Dotim = Application.WorksheetFunction.VLookup(CL.Offset(0, 6), Range("[Data]DataHososanpham!F3:AH" & HC), 29, 0)
CL.Offset(0, 12).Value = Format(CL.Offset(0, 11) / Dotim, "#.#0")
'CL.Offset(0, 14).Value = Format(CL.Offset(0, 13) / Dotim, "#.#0")
'CL.Offset(0, 16).Value = Format(CL.Offset(0, 15) / Dotim, "#.#0")
'CL.Offset(0, 22).Value = Format(CL.Offset(0, 21) / Dotim, "#.#0")
'CL.Offset(0, 24).Value = Format(CL.Offset(0, 23) / Dotim, "#.#0")
'CL.Offset(0, 26).Value = Format(CL.Offset(0, 25) / Dotim, "#.#0")
End If
Next