Saludos! en el siguiente ejemplo yo tengo unn documento con este nombre que fue enviado en varias fechas:
Name | Date |
---|---|
BREX2826324 | 22/3/2024 |
BREX2826324 | 25/3/2024 |
BREX2826324 | 27/3/2024 |
BREX2826324 | 1/4/2024 |
BREX2826324 | 8/4/2024 |
BREX2826324 | 15/4/2024 |
BREX2826324 | 22/4/2024 |
BREX2826324 | 29/4/2024 |
Yo necesito determinar cual fue la fecha en la que se envio el documento, antes de la fecha de envio indicada para cada envio. Ejemplo Yo tengo el archivo fue enviado el 25 de marzo, y la fecha de la ultima actualizacion fue el 22 de marzo. Necesito una columna aparte donde indique la fecha de ultima actualización para todos los casos
Decidi hacer el siguiente flujo:
Donde en el time shift voy restando un dia
y cree previamente un groupby donde se ve concatenado todas las fechas en las que se envió el documento
y un string manipulation donde busco la fecha modificada en el concatenado con un count
y cerré el loop con un variable condition loop donde mi variable es la columna count
Cuando intento correr el flujo se queda ejecutando mucho tiempo y no me ha dado resultados. Me podrian indicar si es que el loop to esta correctamente configurado y como podria arreglarlo. Gracias!
Greetings! in the following example I have a document with this name that was sent on several dates:
I need to determine what was the date the document was uploaded, before the upload date indicated for each upload. Example I have the file was sent on March 25, and the date of the last update was March 22. I need a separate column where I indicate the last update date for all cases.
I decided to make the following flow:
Where in the time shift I’m subtracting a day
and previously create a groupby where you can see concatenated all the dates on which the document was sent
and a string manipulation where I look for the modified date in the concatenated with a count and I closed the loop with a condition loop variable where my variable is the column count
When I try to run the flow, it keeps running for a long time and it has not given me any results. Could you tell me if the loop to is configured correctly and how to fix it. Thanks!