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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by beetlebailey

  1. beetlebailey

    Help to query date format 9/20/2005

    Access Table = tbl TTRN Index Access Data Type = Date/Time, Format = Short Date Thanks for all the help.
  2. beetlebailey

    Help to query date format 9/20/2005

    Neither of the two suggestions are working. Any other ideas ? I am using Excel VBA and a SQL query to tap into Access. The connection and query are woking fine, the query is making it there just coming back empty every time. The problem is breaking the Date field in Access which contains the...
  3. beetlebailey

    Help to query date format 9/20/2005

    I need advice on how to query an Access database table column named "Date" containing the short date format, example: 9/20/2005. I would like to query based on the day (20) and return the results something like this: SELECT TTRN from ([tbl ttrn index])where day = 20 Thanks in advance.
  4. beetlebailey

    Please help me retrieve data from Access using Excel VBA

    I am trying to retrieve information from an Access database using the following SQL statement from within Excel VBA. This works fine: Set conn = New ADODB.Connection conn.ConnectionString = _ "Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data Source=" & "c:\temp\scelestus.mdb" &...
  5. beetlebailey

    Has anyone seen a string variable like this: $(0), zero

    I am using an Allen/Bradley 1746-BAS basic module. Within it's basic code is a variable in which I want to manipulate. The data is stored in string variable $(0) is 987723605XXXA9347286. Any ideas on how to access this string variable so I can chop it up into 3 pieces. The formula provided by...
  6. beetlebailey

    I need to break up 1 large string into 3 smaller strings

    Thanks, could you simply explain how this works ? I would like to understand what is happening. Thanks again.
  7. beetlebailey

    I need to break up 1 large string into 3 smaller strings

    I have $(0) which = 987723605XXXA9347286 $(1) should always be 4 characters: 9877 $(2) should always be the next 8 characters: 23605XXX $(3) should always be the last 8 characters: A9347286 Is anyone familiar on how to break this up and assign a string variable for each new string ? Thanks...
  8. beetlebailey

    How to capture data from an Ethernet device, store to MSSQL

    I have a Ethernet device that randomly sends out data. I need to be able to monitor that IP address for activity and store the data, when it become available, to MSSql 2000, Windows 2000 Server. Does anyone have any thoughts/ideas on how to go about accomplishing this ? Thanks much.
  9. beetlebailey

    Query rounds off percentages, would like actual numbers

    The following query rounds off the percentage to the closest whole number like: 96.00% I would like to see the actual value like: 95.59% Any ideas please ? cast(sum(Hour1)/(cast(Tact1 as decimal(6,2))) as decimal(6,2))*100 as Percent1 SQL 2000, Windows 2000 Pro SP4 Thank you....
  10. beetlebailey

    Please help with SQL query error if no data is present

    Please help if you can with the following SQL query. I am using a ADODB connection from Excel 2000 to a SQL 2000 database. If all three testers are present everything is fine and this query works well. But if one tester gets turned off only 2 testers are found by the query and the last tester...
  11. beetlebailey

    Please help with SQL query error if no data is present

    Please help if you can with the following SQL query. I am using a ADODB connection from Excel 2000 to a SQL 2000 database. If all three testers are present everything is fine and this query works well. But if one tester gets turned off only 2 testers are found by the query and the last tester...
  12. beetlebailey

    Change cell or font color based on data value

    DRW = Database results wizard Yes, it's an ASP page. Yes, greyed out comments and stuff. Yes, <% and %> System DSN connection to SQL database Thanks so much for the assistance, Mark
  13. beetlebailey

    Change cell or font color based on data value

    OK, great that works wonderful. The next question is this: I am using DRW to return SQL data to a table 8 columns by 14 rows. I need to read the value of the cell at column 5 row 3 and determine if it's > or < 90 then apply the appropriate color. Am I heading in the right direction and is this...
  14. beetlebailey

    Change cell or font color based on data value

    I am new to FrontPage and need some additional advice. Where would this code go in the page ? What size table is you code based on ? Thanks so much.
  15. beetlebailey

    Change cell or font color based on data value

    I am using FrontPage 2002 on Windows 2000 sp4. I am pulling data fron a SQL server and displaying it in a table containing many cells. I want to change either the font color or background color of a cell if the returned value falls below 90. Similar to conditional formatting in Excel. Is this...

Part and Inventory Search

Back
Top