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 SkipVought 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: *

  • Users: ETID
  • Order by date
  1. ETID

    Allow users to refresh external data?

    Do the other users have the necessary DSN for the ODBC Coneection?
  2. ETID

    iseries net server permissions

    Any deletions or File Renaming would be done via Admin request. (it's a business process thing) The folder structure should not be able to be defined / redefined by the user.
  3. ETID

    iseries net server permissions

    Hi, Does anyone know what combination of switches (R,W,X)..etc That I would need to allow users in a group to add and read files to a netork folder (mapped as a windows drive),...but not delete any files?
  4. ETID

    Macro Criteria = cell contents

    dim criteria1 as string criteria1=activecell.value
  5. ETID

    Excel Com port communication

    Or this... Open "PRN" For Output As 1 Print #1, Chr$(12); Close 1
  6. ETID

    Excel Com port communication

    Old Excel (undocumented) was able to read and write to lpt1: using something like... open "lpt1:" for output as #1 print #1, chr$(12) close #1
  7. ETID

    VBA Excel Setting Range

    ' Ooops, missed the centering part of your request. sub Center_cells() Dim x As Integer Dim off_set As Integer Dim col_num As Integer x = 1 off_set = 12 col_num = 1 Range(Cells(x, col_num), Cells(x + off_set, col_num)).HorizontalAlignment = xlCenter End Sub
  8. ETID

    VBA Excel Setting Range

    sub select_cells() Dim x As Integer Dim off_set As Integer Dim col_num As Integer x = 1 off_set = 12 col_num = 1 Range(Cells(x, col_num), Cells(x + off_set, col_num)).Select end sub
  9. ETID

    Formula that splits cell contents and returns calc value

    Could you use sperate columns for each value? the heading in cell F1 "% of Coin" the formula in cell F2 =mid(d2,2,4)*.36 the heading in cell G1 "% of Revenue" the formula in cell G2 =mid(d2,6,4)*.5 ...and so on
  10. ETID

    Converting time into minutes

    Look in the help under "convert" for the convert function... example: =CONVERT(A2,"in","cm"). There should be something like =CONVERT(A2,"sec","min") Although you may need verify the proper "from" and "to" phrases.
  11. ETID

    Trapping the keyboard event using macro

    have you tried the onkey event?
  12. ETID

    is it possible to find duplicates WITHIN one record or query?

    Highlite all "Guess" colums...in this case "B:D" Then Under Format, use Conditional Formating to flag the duplicates. when you define the condition...switch to "formula is" in the left drop down and type this ... =if(countif($b1:$d1,b1)>1,true,false) Note: Change the $B1:$d1 range to match...
  13. ETID

    No Decimal Input - Excel Spreadsheet

    from the menu...have a look at the 'validation' tool.
  14. ETID

    Automate hyperlink between a file and Excel 2003

    This example formula pasted in cell b2 links cell b2 to a pdf file on an I:\drive of the same name as is in cell A2 =HYPERLINK("I:\"&A2&".pdf", "Go to "&A2&".pdf")
  15. ETID

    Excel Covert Number Table to Column

    A VBA solution.... Sub Grid_to_Column() Dim C As Range, r As Integer, sheet_name As String Columns("A:A").Select Selection.Insert Shift:=xlToRight sheet_name = ActiveSheet.Name r = 1 For Each C In Sheets(sheet_name).UsedRange.Cells If C.Value <> "" Then Cells(r, 1) =...
  16. ETID

    Passing the value of variables between projects.

    Are both add-ins open at the same time? If so... dimension your variables in a non private module as public I.E. public x as integer public my_text as string etc...
  17. ETID

    Convert Double Data Type

    maybe this? strOutput = strOutput & " " & cstr(strTemp)
  18. ETID

    Pivot Question

    Look in the pivot table toolbar for formula>calculated field. follow the wizard
  19. ETID

    Access Report (pages printed vs. record count)

    Thanks to everyone... Remou, with a little editing the example you posted work just lovely. and to ProgramError...thanks for that bit of code, I will most likely be able to use it in this project as well.
  20. ETID

    Access Report (pages printed vs. record count)

    Hi Everyone... I have an access report that is launched from a form via vba and the NUMBER pages that are "auto printed" are based on a variable (labelsx) created by running a Mod function on the number of records in the report source. (THE PURPOSE IS TO MINIMIZE WASTE OF LABEL STOCK). i.e...

Part and Inventory Search

Back
Top