Hi Guys i'm writing a macro in excel that need a down arrow send at one point. Below is the script
Sheets("1").Select
Range("A4").Select
Selection.End(xlDown).Select
Sheets("2").Select
Range("A4").Select
Range(Selection, Selection.End(xlDown)).Select
Range(Selection, Selection.End(xlToRight)).Select
Selection.Copy
Sheets("1").Select
ActiveSheet.Paste
Selection.End(xlDown).Select
SendKeys ("DOWN") ' I need to send the down arrow here'
How do i do it
Rgds,