View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
IAM IAM is offline
external usenet poster
 
Posts: 3
Default Passing a Variable to a Macro

I want to create a simple Macro that sorts a list by the criteria that a user
enters. I know I would hard code this macro with something liek:
ActiveSheet.Range("$A$5:$CW$355").AutoFilter Field:=77, Criteria1:="0008"

but I want the user to be prompted to select the Criteria, "0008" in this
instance, and then have the list sort.

I am hoping it is pretty easy...

Thanks