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

  • Users: PLCBeetle
  • Content: Threads
  • Order by date
  1. PLCBeetle

    Passing a form value to query...

    Hello... I have a form named: Reports On this form there is a text box named: Comment_Search Contents of the text box is: Water_Comments The contents of the text box are actual column names in a table. I am trying, without success, to create a query which will use the text box data as the...
  2. PLCBeetle

    Pass Form value to Report Record Source

    Hello... I am trying to pass a column name from a form to a report query record source without any luck. The Report_Date data is coming thru into the form detail but that is all Form name: frm_reports Form text box: comment_search This text box contains the name of the column in the...
  3. PLCBeetle

    MSAccess 2010 join query help please...

    I have this query which I have written, tested and works great in MSSQL: SELECT partno12nc, apodo, partno, suffix, suffixtext FROM partspec12nc.dbo.parameters A INNER JOIN partspec12nc.dbo.suffix AS B ON A.suffix = B.id WHERE partno12nc <> 0 and suffix <> 0 ORDER BY partno12nc I am trying to...
  4. PLCBeetle

    Extracting and sorting records by year query

    I have an Access 2010 database in which I am having issues to isolate the text date from the string and sort the records by the text date. Table: Movie Column: Title Data type: Text Sample table data: 12 Years A Slave (2013-R) 127 Hours (2010-R) 17 Again (2009-PG13) 21 (2008-PG13) 27 Dresses...
  5. PLCBeetle

    Align text in Excel (xlLeft) not working...

    I have an MSAccess 2010 database in which I was using a VBA reference, early binding, and this code to align the text in the cell to the left: newWkSheet.Cells(2, 2).HorizontalAlignment = xlLeft Due to MSAccess version and reference conflicts I removed the VBA reference and now I am using late...
  6. PLCBeetle

    VBA reference incompatibility between Access versions...

    Good morning to all… Background… I have written a database program in MSAccess 2010 and put this program on my server for everyone to use. This program opens MSExcel 2010, creates a data file, saves the file, closes the file and MSExcel. To do this I use the Microsoft Excel 14.0 Object Library...
  7. PLCBeetle

    Hyperlink in Access report

    Hello and good morning. I am trying to include a hyperlink on a report using the followhyperlink command in VBA. It is working great when I open the report using acViewReport option to open it. The problem is that I cannot see all the records or seem to figure out how to scroll between the many...
  8. PLCBeetle

    Horizontal comma seperated numbers...

    Hello to all... I am trying to create a MSSql query that will return a horizontal list of numbers seperated by commas using the code below. I am close but not quite working correctly. Any help will be greatly appreciated. Many thanks :-) DECLARE @pending varchar(500) SET @pending = ''(SELECT...
  9. PLCBeetle

    Frustrated with date query...

    Hello all. I need your help please. I have a MSSql2000 table with a column named last_update with the datetime format. I am trying to query only the date portion of the data to verify that an entry for a specific day does not exist before inserting a new record. I am not having much luck or...

Part and Inventory Search

Back
Top