Hello All,
Im trying to develop an excel workbook that I can use as a template for PDF's I convert to .xls files in order to search for data and manipulate it.
I've tried messing with VB and I cant seem to get it right. Can anyone help me figure out how to accept user input for a value as well as accept a column letter and then have a macro seach all worksheets in the workbook for any value >= to the input...Then copy and paste it to the first sheet?
IF anyone has any code readily available, or help..I would greatly appreciate it.
I can currently search 1 sheet and cut and paste the exact value of the input but thats it. The code is below.
Thanks
Option Explicit
Const rtDataSheet As String = "Sheet1" 'Change to actual data sheet tab name
Const rtResultSheet As String = "Sheet8" 'Change to actual result sheet tab name
Dim ColName As String
Dim SearchStr
Bookmarks