Ayuda con Codigo de Macro :banghead:

Escato

New Member
Joined
Nov 18, 2004
Messages
1
Hola

Tengo el siguiente problema elabore una macro para buscar las facturas que estan en un libro, en otro diferente y una vez que encuentre la factura en el otro libro la seleccione de amarillo, mi problema comienza cuando quiero que el numero de factura varie conforme voy ejecutando la macro pero excel me graba el mismo numero de factura, cuando el numero que necesito en realidad va variando, alguno de ustedes como debo de editar el siguiente codigo para que en vez de que me salga en Find(What:="F/39965") s la factura "F/39965" me salga mejor la posicion en que me encuentro actualmente, por que las facturas que quiero buscar estan en una columna

Les paso el codigo de la macro y en negrillas el numero de factura que quiero que cambie de acuerdo a la celda seleccionada.

Muchas Gracias espero que alguien pueda ayudarme

Saludos.

Sub Macro3()
'
' Macro3 Macro
'
'
Selection.Copy
ActiveWindow.ActivateNext
Cells.Find(What:="F/39965", After:=ActiveCell, LookIn:=xlFormulas, _
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False).Activate
ActiveCell.Rows("1:1").EntireRow.Select
ActiveCell.Activate
Selection.Interior.ColorIndex = 6
ActiveCell.Select
ActiveWindow.ActivateNext
End Sub
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result

Forum statistics

Threads
1,223,948
Messages
6,175,575
Members
452,652
Latest member
eduedu

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