Como meter en variables desde un excel

BUENAS TARDES,
NECESITO HACER UN BUCLE DONDE CADA VEZ SE GUARDEN LOS DATOS DE LAS COLUMNAS EN UNA VARIABLE.
POR EJEMPLO COLUMNAS: NOMBRE, APELLIDO Y EDAD QUE ME LO GUARDEN DE CADA VEZ EN SU CORRESPONDIENTE VARIABLE: VALORNOMBRE, VALORAPELLIDO Y VALOREDAD

GRACIAS

@pitod89832

Welcome to the community

  1. Create 3 variables as need
  2. Then use for each row in excel or read the data into dtaatabe and use for each row in dtatable
  3. Inside loop currentRow("ColumnName").ToString will give the corresponding column value for eahc iteration
  4. Use assign like this variable = currentRow("ColumnName").ToString

Hope this helps

cheers

@pitod89832

inside for each row in datatable activity

use add data row activity and pass the variables

cheers

probé la actividad for each Row in data table y el for each excel Row. En ambos me sale el error:Argument “value”: non-invocable membre “CurrentRow” cannot be used be like a method

llevo tiempo peleando y no hay manera :S

@pitod89832

Is this what youa re trying?

Also is the project in C# or vb.net

if c# use currentRow["ColumnName"].ToString()

cheers

1 Like

muchas gracias por la atención. era que tenia () en vez de por ser c#

gracias!

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.