streetprog
Technical User
I'm writing a macro to export some data into Excel, have it perform a number of tasks and then pull it back into Extra. I know I can get it to work if I just use Excel VBA to interface with Extra, but it would be easier for the user to run from Extra rather than Excel.
The problem I have is with making VBA code work with Extra. I can get the simple tasks like [Extra.Range("D1").Value = "whatever"] just fine.
How do I get this VBA code to work in Extra?
The problem I have is with making VBA code work with Extra. I can get the simple tasks like [Extra.Range("D1").Value = "whatever"] just fine.
How do I get this VBA code to work in Extra?
Code:
Columns("D:D").Select
Selection.Sort Key1:=Range("D1"), Order1:=xlAscending, Header:=xlGuess, _
OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, _
DataOption1:=xlSortTextAsNumbers