tengo 4 input a los que llamé
input1, input2, input3....inputN
estos input tienen el mismo tipo de informacion pero puede que solo ingresen 4 y no todos los input... por tanto he hecho lo siguiente
if input1 = "" then
input1 = "No Ingresado
end if
if input2 = "" then
input2 = "No Ingresado"
end if
y quiero realizar lo siguiente
Código:
for i = 0 to N then if input&(i) <> "No Ingresado" then clausula de Insert end if next
Como lo podria hacer porque asi como lo hice no resulta...