Vlookup ayuda por favor

GLaveaga

New Member
Joined
Aug 21, 2003
Messages
14
Hola a todos.
Tengo un problema y verdaderamente necesito de tu ayuda.

Lo que pasa es que tengo un file 1.xls con un vlookup link a otro file 2.xls los cuales se encuentran en un network.
El file 2.xls lo tengo que actualizar cada vez que Jose Lopez, lo modifica con nuevas cantidades.

El problema reside en que Jose Lopez no me notifica de estos cambios porque es una persona muy ocupada.

Y me gustaria saber si es posible crear un Macro que pueda comparar la hora en que 2.xls fue modificado contra la hora en que 3.xls fue modificado y que un msgbox me notifique que 2.xls necesita ser acualizado.
En otras palabras si 3.xls es mas nuevo que 2.xls msgbox me alertara.


Name----------------Modified
H:\my docs\2.xls----8/25/2003 8:00AM
H:\Joe Bob\3.xls----8/25/2003 9:00AM

Cualquier ayuda al respecto sera sinceramente agradecida.

G
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
¿Algo así?

<font face=Courier New>
<SPAN style="color:#00007F">Sub</SPAN> ReviseFechas()
    <SPAN style="color:#00007F">Const</SPAN> strcArch1 = "H:\Directorio\Archivo1.xls"
    <SPAN style="color:#00007F">Const</SPAN> strcArch2 = "K:\Directory\File2.xls"
    
    <SPAN style="color:#00007F">If</SPAN> FileDateTime(strcArch1) > FileDateTime(strcArch2) <SPAN style="color:#00007F">Then</SPAN>
        MsgBox "Hay que actualizar " & strcArch1
    <SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">If</SPAN>
<SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">Sub</SPAN>
</FONT>

Si desea que este se corre cada _____ haga un «Search» para OnTime en Ayuda de Excel VB y/o aquí en MrExcel.

Saludos
 
Upvote 0

Forum statistics

Threads
1,223,939
Messages
6,175,529
Members
452,651
Latest member
wordsearch

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top