Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. tudor30

    Submitting a request to schedule a meeting in Outlook from UNIX

    Is it possible to submit a request to MS Outlook from UNIX that launches "schedule a meeting" and places the attendee list in the meeting being scheduled? Example: Using sample data (below) which is available from UNIX and submitting the request from UNIX. Bob Jones <bjones@abc.com> Jim Smith...
  2. tudor30

    Reading Across a Row for a Value

    I would like to read from C4 to L4 and verify if any of those cells has a value in it. If so, Then copy the value of B4 to AB4. If ActiveSheet.Range("C4") <> "" Then ActiveSheet.Range("AB4") = ActiveSheet.Range("B4") ElseIf ActiveSheet.Range("C4") = "" Then...
  3. tudor30

    ActiveCell.FormulaR1C1: Getting Continuous Data

    How is that used to move to the next row down from '[S350 T3 PLPDP.xls]Master Tracking'!R10C2" so that it selects the value in R11C2
  4. tudor30

    ActiveCell.FormulaR1C1: Getting Continuous Data

    Is there a method to use the following statement so that in a Loop it locates the next row down. example !R11C2, then !R12C2,...and so on? ActiveCell.FormulaR1C1 = "='[S350 T3 PLPDP.xls]Master Tracking'!R10C2
  5. tudor30

    Verify Cell Value is a Date

    Thanks ETID. That worked very well!
  6. tudor30

    Verify Cell Value is a Date

    I need to look down a column of data and verify the entry is a date. Thanks for assistance, John
  7. tudor30

    Linking all column values from spreadsheet to spreadsheet

    I know how to link a spreadsheet one value at a time. example: ='[S350 T3 PLPDP.xls]Master Tracking'!$B$10 Is there a method to link all values in column B to my new worksheet rather than going one cell at a time? Thanks for the assistance, John
  8. tudor30

    How do I End a Loop from inside the Loop?

    I'm using this code to look up the column from a variable cell position. When I find the matching value I would like the Loop to End. r = 1 Do If .Cells(lngRow - r, 16) = strCode Then...
  9. tudor30

    Using Application.ActivePrinter to Set Acrobat Disitiller 6.0

    Thanks That worked! It's always the simple stuff. John
  10. tudor30

    Using Application.ActivePrinter to Set Acrobat Disitiller 6.0

    I recently upgraded from Acrobat 5.0 to 6.0 (Standard). I have VBA code the previously worked well in 5.0 to create postscript files. The code does not work as is for Acrobat Distiller 6.0. Code Being Used: Dim PSFileName As String Application.ActivePrinter = "Acrobat Distiller on...
  11. tudor30

    Sequentially calculating the next cell value.

    When I run the first set of code that uses lastletter = I would get the following results in the work 2 column (1 to 8) I would like this number to continue up to 999, which would include enough "0" Level PartNumbers to be used. Level PartNum work2 0 RE523132 1 1 R519336 1 1 R85027 1 1...
  12. tudor30

    Sequentially calculating the next cell value.

    Skip, Thanks for the reply. I apologize if I have not communicated thoroughly. Is it possible to use what you have only with the results be all numeric and then an example of alphanumeric lists of numbers in column A? Thanks again, John
  13. tudor30

    Sequentially calculating the next cell value.

    The code below is used to place an identified value greater than the cell of the same column in the previous row if the values between the two other cells in each row are different. This works well when there is 26 or fewer different compariasons. (building A, B, C,... etc.) I'm looking for a...
  14. tudor30

    Problems with Listboxes if item is Selected from the list and the Text

    Code used for Commandbutton, ListBox, and TextBox Private Sub CommandButton2_Click() optioncode_Search UserForm1.Frame2.TextBox12.Text End Sub Private Sub optioncode_Search(SearchFor As String) Dim rngFind As Range Dim strFirstAddress As String ListBox2.Clear...
  15. tudor30

    Problems with Listboxes if item is Selected from the list and the Text

    Watch : : UserForm1.Frame2.ListBox2.ListIndex : -1 : Variant/Long : UserForm1.ListBox2_Change Watch : + : UserForm1.Frame2.ListBox2.List : <No Variables> : Variant/Variant(0 to -1, 0 to 9) : UserForm1.ListBox2_Change
  16. tudor30

    Problems with Listboxes if item is Selected from the list and the Text

    I have the items added to the watches. What do I need to communicate to you from the Watches? by the way...thanks for helping. John
  17. tudor30

    Problems with Listboxes if item is Selected from the list and the Text

    Skip, I haven't used the watch window before (hope you're not too surprised by that. Iclicked on watch window but I am unsure how to enter what you said to watch. John

Part and Inventory Search

Back
Top