You don't really need macros to do something like this - but then again this seems more like something you are doing for fun than for anything practical.
You could just sort your range "A1:T300001" by column A from high to low and copy and paste the top hundred rows.
But if you want a macro that does this, this should work for you:
Sub MacroAutofilterExample()
ActiveSheet.Range("$A$1:$T$300001").AutoFilter Field:=1, Criteria1:="3.000"
Range("A1:T300001").Select
Selection.Copy
Sheets(2).Select
Range("A1").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("A1").Select
Sheets("Sheet1").Select
Range("A1").Select
Selection.AutoFilter
Range("A1").Select
End Sub
Obviously their are some efficiency losses by using selections(since I recorded parts of it) but you can change those to use set ranges - generally this should give you an idea.
EDIT:
You would change the field:
Transpose:=False
In the above code to:
Transpose:=True
If you wanted your results transposed.