
03/05/2002, 05:46
|
| | Fecha de Ingreso: febrero-2002
Mensajes: 15
Antigüedad: 23 años, 2 meses Puntos: 0 | |
Re: VBA para excell Vamos a ver, imagino que la macro la estas haciendo mediante codigo, un ejemplo seria:
ActiveSheet.DropDowns.Add(117.75, 108, 0.25, 16.5).Select
With Selection
.ListFillRange = "$I$1:$I$3"
.LinkedCell = ""
.DropDownLines = 8
.Display3DShading = False
End With
Range("I1").Select
ActiveCell.FormulaR1C1 = "primer valor"
Range("I2").Select
ActiveCell.FormulaR1C1 = "segundo valor"
Range("I3").Select
ActiveCell.FormulaR1C1 = "tercer valor"
Chao.
Nisoa |