If this will help I do know how to open a website thru VBA
Sub MnDot_Website()
ActiveWorkbook.FollowHyperlink address:="http://transport.dot.state.mn.us/Reference/refItem.aspx", NewWindow:=True
End Sub
Also I have the copy a past figured out
Windows("TrnsportItemList.csv").Activate ’ new data workbook
Columns("A:F").Select ’ colums with data that I need
Selection.Copy
Windows("Mpls_Quantities_Workbook_Revision_6.16.xlsm").Activate ‘ my workbook
Sheets("MN DOT Trnsport List (2016)").Select ‘ worksheet in my workbook where I want to put my data
Range("A1").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Windows("TrnsportItemList.csv").Activate ‘ workbook from MnDOT
ActiveWindow.Close ‘ close MnDOT workbook and don’t save
What I need help with is how to click the Linked text Export To CSV on the MnDOT website.
And then clicking on the Button Open that comes up after
Bookmarks