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

  1. AnalystDBA

    Help with SQL

    hi appi, thanks for the reply. I have a cancelled field and that can eliminate the cancelled deliveries. If the first delivery is cancelled eg. del_num = 1 and status = cancelled then I have to go to del_num = 2 for the second delivery. Is there a FIRST operator in Informix that will get the...
  2. AnalystDBA

    Help with SQL

    Hi, I am trying to get the first delivery date for each order in a recordset that will have many orders for each customer and many deliveries for each order. I need to get the Customer details, the order details and show the first delivery date for each order. The Tables I am working with are...
  3. AnalystDBA

    Create View Statement in Stored Procedure

    Hi All, Can I use a Create View Statement in a Stored Procedure in Informix v7.31. I am trying to created the stored procedure and I keep getting a Syntax error. I can't seem to find the error and was wondering if it was the Create View statement in my stored procedure. Any help would be...
  4. AnalystDBA

    MS Access chewing up memory

    Hi All, I have an application in Access and sometimes I get a Windows message telling me that Resources are dangerously low and I should close uneeded programs. I have an AMD Athlon XP1800 with 256MB DDR Ram. Its not the quickest machine around but its not exactly slow either. MS Access just...
  5. AnalystDBA

    Convert Number to Text

    Hi People, Does anyone know of a function or have a function that they have created that will convert a number to its text equivilant. ie Number = 1240 Text = One Thousand Two Hundred and Forty Cheers, AnalystDBA
  6. AnalystDBA

    Nested Select Case

    Hi everyone. Simple question. Is it possible to nest a select case statement within another select case?? Cheers AnalystDBA
  7. AnalystDBA

    Can't open Sorting and Grouping window

    Hi All, Can anyone help with this?? It may sound stupid but I can't open the sorting and grouping window in report design view. I click on the sorting and grouping option on the toolbar and the report loses the focus but the Sorting and Grouping window appears to be hidden for some reason. I...
  8. AnalystDBA

    Multiple filters on report

    Try this automaticbaby DoCmd.OpenReport "Transaction Report", acPreview, , "[User ID] = '" & Me.User_ID & "'" You can also assign the filter to a variable and then open the report with the following code. Dim FilterCriteria as string FilterCriteria =...
  9. AnalystDBA

    Subreport in report producing IPF

    Hi all, Can anyone help with this one? I am using Access 97 I have a basic report based on a static table in Access. I am trying to insert 2 sub reports into the main report to total data for each segment of the report (ie sales by territory,area and manager with a total for area and...
  10. AnalystDBA

    Incorrect Date Criteria in report

    Steve, I checked both of these and nothing obvious stuck out. Thanks for your help anyway. I guess its back to the drawing board :o) Have fun programming Steve. Cheers AnalystDBA
  11. AnalystDBA

    Incorrect Date Criteria in report

    Steve, Thanks for the reply. I have checked the regional settings however this should not effect the query as Access converts any date to a serial number regardless of the format. The filter in the open report command has the dates enclosed in # and the controls on the form that I have assigned...
  12. AnalystDBA

    Counting a record that has slashes

    Hey mouseman , This should give you a count of the names in your table create the following query SELECT Sum(findtext([Your Name Field Here],'/')+1) AS NameCount FROM [Table Name Here]; then create the following function in a standard module. Option Compare Database Option Explicit...
  13. AnalystDBA

    Report in 2 formats

    Hi Errolf Unfortunately there is no code that I know of that will format the page layout of a report in Access and I have looked into it in detail. You can however open both reports in the one action so they display on screen on top of one another. In VBA all you need to do is open both reports...
  14. AnalystDBA

    newbie report question

    Hi Kelly, This sounds complex. Can you email me your .mdb file and I will see what I can do. I create reports like this all the time. Cheers, AnalystDBA alc_consulting@optusnet.com.au
  15. AnalystDBA

    Incorrect Date Criteria in report

    I have an Access report based on criteria entered by the user. The problem I have may not necessarily be Access related. When I run the report on my machine the report opens fine with the correct information. When someone else tries to run the report on their machine the report does not return...
  16. AnalystDBA

    problem to print reports

    Do you get any error messages when you try to run the reports or when Access shuts down?? AnalystDBA.
  17. AnalystDBA

    problem to print reports

    If you tell me all the steps you are going through to print your report I'll see if I can help. Cheers, AnalystDBA
  18. AnalystDBA

    Using like operator in criteria of a query

    leobaby, Try this. Like [Forms]![frmPowerSearch]![criteria1] & "*" Like does not like Null values. By adding the wildcard operator after the field reference it should work OK even if the criteria filed is null it just searches for anything using the Wildcard operator (*). You...
  19. AnalystDBA

    Help with Query using the <> operator

    Hi Paul, I agree with Demonman. Nested Select is the way to go. Cheers
  20. AnalystDBA

    Access Query comparing 2 sets of data with 2 sets of dates

    Lynn, I do this sort of stuff often. I find it easier to run reports like this using VBA so if you would like some help drop me a line at alc_technology@optusnet.com.au It might be worth emailing me your .mdb file. That way I can see it in more detail. Cheers Andrew.

Part and Inventory Search

Back
Top