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: jvanderw
  • Order by date
  1. jvanderw

    Limit # of rows in crosstab query

    Hey all! Here is my problem - I have a crosstab query that is grouping data by week ending dates (Fridays) for a year's worth of dates. I then export the queries to excel and have some graphs set up to display the data. My problem is that sometimes there are 53 week ending dates in a year...
  2. jvanderw

    Reference value from a field in a subform

    Thanks for all of your help. I ended up replacing the subform with a multi select list box. Then put a button on the form that calls a function: Call GetBankDepRecord(BankDepList) where BankDepList is the name of the list box Here is the function: Public Function GetBankDepRecord(ControlName)...
  3. jvanderw

    Reference value from a field in a subform

    Thanks for the tip, but I tried this: Forms.[test].[ID].Value = Forms.BankDepSortsubform.Controls("ID").Value and it didn't work. I tried us me. instead of forms. as well. It gives the error "Run-time error 438. Object doesn't support this property or method." Any idea why I am getting the...
  4. jvanderw

    Reference value from a field in a subform

    Hey all, Here is my problem. I have a subform that displays data from a query. I want to be able to select a record in the subform and click a button that will set a text box to the value of the id field of the subform. How do I do that? Textbox123.value = ???????? Thanks for the help, Josh
  5. jvanderw

    Bold format on top & bottom 10% of records in a report

    Hey all, I want to make the top & bottom 10% of the records of a report bold (if there are 100 records the first 10 and last 10 records will be bold). Is there a way to do this??? Thanks in advance, Josh
  6. jvanderw

    Need 2 lines on an Excel Chart Title

    Skip, This solution won't work because I am using an Access DB to populate the Excel document with on clients info, copying the document to the server with that clients name, then repeating for all other clients. The client name is changed each time the document is updated. If the chart title...
  7. jvanderw

    Need 2 lines on an Excel Chart Title

    Hey all, I am using a cell reference to populate the title of a chart (='Call Data'!$F$1:$F$2). This grabs the type of data from one cell and the client name from the other cell. I want to have each show up on its own line in the title but am unsure of how to do this. Essentially I want to...
  8. jvanderw

    Import CSV file into Excel

    Thanks for the tip. I tried the macro recorder and am able to get the code to open a text file in a new workbook: Workbooks.OpenText FileName:="C:\Temp\RESULTS.TXT", Origin:=xlWindows, _ StartRow:=1, DataType:=xlDelimited, TextQualifier:=xlDoubleQuote, _...
  9. jvanderw

    Import CSV file into Excel

    Hey all, I need to import a CSV file located at "C:\Temp\Results.txt" into the "Results" tab of an excel file located at "C:\Simulation\28DayInputs.xls". I need to use VBA (due to the requirement of software called Simul8) but have a very limited knowledge of VBA. Any help that you can provide...
  10. jvanderw

    Help limiting DB size

    Hey all- I have a DB with about 950,000 in a table called "Tallies". Within this table is information broken out by customer (about 400 of them). I currently export information for each customer to excel spreadsheets with 10 different queries. Each time I export a customers information I...
  11. jvanderw

    Trouble combining results from multiple queries

    Group, I have a somewhat complex problem to explain so bear with me. I have a table called "TallyName" that shows every tally name that can occur in my database (each tally name occurs only once). I have one query called "CurrentTallies" that sums the number of tallies by tally name and source...
  12. jvanderw

    Runtime error 2110 when trying to set focus

    THANK YOU!!!!!!!!!! The bang (!) worked! Josh
  13. jvanderw

    Runtime error 2110 when trying to set focus

    Thanks Zameer, but I still get the same error. I am about at wits end with this problem! Josh
  14. jvanderw

    Runtime error 2110 when trying to set focus

    My mistake, I should have deleted Me.cmdGetNewFileInfo.SetFocus before I copied the code to the forum. I was just trying to set focus to the button that has the "on click" event first. The code would still bomb out on Me.UseZip.SetFocus. Any other thoughts? Josh
  15. jvanderw

    Runtime error 2110 when trying to set focus

    I am running the following bit of code in the on click event of a button: If IsNull(Me.UseZip) Then Msgbox "Please Note: 'Use zip code/Acct number opening' must be scored before continuing!" Me.cmdGetNewFileInfo.SetFocus Me.UseZip.SetFocus End If I get a runtime error 2110 that...
  16. jvanderw

    automatic email notification of search results

    Jeff, If possible I would want to do this using a search engine like Google or Yahoo. Also, so you know what kind of background I have; I do mostly Access DB work (using some VB), so some of what you are saying is Greek to me (like Apache/JSP/mySQL with JMail). Anyway, any additional is...
  17. jvanderw

    Tool/Method to post graphs/tables/reports to the web

    Group, I have information stored in an Access 2000 DB and need to be able to post various graphs/tables/reports to the web. I am looking for input as to the best way to do this. Is there any software out there that can be used to pull the data from Access (or Excel)? Or is there some good way...
  18. jvanderw

    automatic email notification of search results

    I would like to set up an automatic search that sends me an email each time a new item is posted to the web that meets my criteria. Is this possible and how does one go about setting this up? Thanks Josh
  19. jvanderw

    Copy a file using VB in an Access 2000 DB

    Looking for a little help to do the following: I have a file called template.xls that I need to copy to a location on a server. The template file is at //mars/shared/iedept/webportal/template.xls and I will need to copy this file to //mars/shared/clientreviewdocs/##/$$$-template.xls. ## = a...
  20. jvanderw

    Error Message while compacting Access DB

    Eric, This is a very simple "back end" database that only holds tables and a few very simple append/delete queries. There is no VB in this DB. Thanks, Josh

Part and Inventory Search

Back
Top