gracias beesheep por tu comentarios, ya realice la creacion de la variable, lo que trato de hacer ahora es que dentro del FOR este leyendo los datos sin embargo cada vez que lea que se almacene en alguna variable por, y al final q me muestre todos los datos que leyo…
adjunto el .xaml, ahorita lo que realiza estar leyendo celda por celda en la columna “L” y que hasta donde encuntre en espacio en blanco de esos 5 documentos que leyo los almacene en alguna variable ya que esos q encontro los voy a llevar a otro archivo de excel y posteriormente que siga leyendo y almacenando en esa variable hasta donde encuentre datos.
hello @mustafa.altinbasak , what I try to do is save me in groups in a variable, for example in column L the first 5 documents and in another variable the amount that is in yellow and that you continue reading if you find another group of documents.
thanks for your help and time
for example:
1900005724
1900012616
1900016524
1900017644
1900020124
You will need the Dictionary class which allows you to “link” a key (your importe) to a value (your documento).
Since we have a list of documentos to associate with an importe, we will use a Dictionary(Of Integer, List(Of Integer))
The Dictionary is getting populated with an importe and a list of documentos everytime a cell in “Documento” column is empty.
Please note that :
I had to move your Excel file’s column up so that the first row is not empty.