|
Dernière réponse | |
---|---|
Sujet : Programmation sous Excel 2000 | |
ptrice | programme en vba comme ca
Sub ClearTable(firstRow) '--------------- i = firstRow Do While ActiveCell.Cells(i, 1) <> "" j = 1 Do While ActiveCell.Cells(i, j) <> "" ActiveCell.Cells(i, j).Value = "" j = j + 1 Loop i = i + 1 Loop End Sub |
Vue Rapide de la discussion |
---|