Search results

  1. KeithG

    SQL Question in relation to Max for most recent date

    try the below SQL SELECT BaseTable.[ID #], BaseTable.[Last Name], BaseTable.[First Name], Max(CrtSubTab.[Pending Court Date]) AS [MaxOfPending Court Date] FROM CrtSubTab INNER JOIN BaseTable ON CrtSubTab.[ID #] = BaseTable.[ID #] GROUP BY BaseTable.[ID #], BaseTable.[Last Name]...
  2. KeithG

    I need help with a function code (getting a number from a string field, data manip.)

    so basically you need to retrieve the number before the front slash /?
  3. KeithG

    SQL Question in relation to Max for most recent date

    That write Springfield to be exact.
  4. KeithG

    SQL Question in relation to Max for most recent date

    Can you post an example db and I will show you. You can take all the data out if it is private. I noticed you are from central Illinois, what city are you in?
  5. KeithG

    Where Clause

    Where = "cardnumber = '" & CardNumberGlobal & "'"
  6. KeithG

    Output to xls

    First just create a query object so that you can manipulate the SQL. Then you can open the querydef in code and update the SQL Statement. Something like below would work or at least give you and idea Dim def As QueryDef Set def = CurrentDb.QueryDefs("queryName") def.SQL =...
  7. KeithG

    query, with lookup fields

    Include the table in your query.
  8. KeithG

    Browsing for a file macro

    check out the example. Is this what you need?
  9. KeithG

    Show Day "Monday"

    lookup the Weekday and WeekdayName functions
  10. KeithG

    DLookUp in Query Issues

    Looks correct to me. Why not join tblMembers.MemberID to [tblEvalResults].[FlightExaminer]?
  11. KeithG

    Is it possible to pass a variable from Excel to Access?

    Sometimes you just need an outside opinion.
  12. KeithG

    Set validation rules in SQL?

    Look up the tableDef object in VBA help.
  13. KeithG

    Is it possible to pass a variable from Excel to Access?

    What you could do is save the variable to a cell on the spreadsheet and then write a function in Access to look up the value in the Excel cell.
  14. KeithG

    IF THEN - Hide toolbars for users

    Do you have user level security on the db? If so you can use the CurrentUser() function to retrieve the user name of the person logged in. If you dont have User level security yoiu can use Environ("Username") to retrieve the name of the user logged into windows. From there you can determine...
  15. KeithG

    User and Group Permission

    You need the security file .MDW I believe. You will also have to setup a shortcut for the user to access the db. What I would do is send along a word document with a command button on it that runs a macro to create the shortcut using the correct security file.
  16. KeithG

    Image In Access Window

    Why can't you get it to work? What happens when you try?
  17. KeithG

    Data Base Left open

    Basically what you need to do is create an invisible form and set it as your start up form. Then you can open your swithboard on the open event of the invisible form. Next use the timer event to run some code to check if the current time is past 5.
  18. KeithG

    Filtering nightmare

    have you tried the text-to-columns feature in Excell? That may do the trick
  19. KeithG

    Filtering nightmare

    There is a program called Monarch that is used for this type of request. You could probably write a VBA funciton to parse the data.
  20. KeithG

    Warning of field Is Null

    What is the expression you are using?
Back
Top Bottom