Forum Replies Created

Viewing 15 posts - 121 through 135 (of 274 total)

  • RE: Cascading (filtered) combo boxes in a datasheet or continuious form

    Well I learned some things too - glad you were able to work it out and thanks for sharing.

    Wendell
    Colorful Colorado
    You can't see the view if you don't climb the mountain!

  • RE: Min, Max & Average Query

    OK, that clarifies things. Here is the SQL for doing what you want:SELECT CDate(Int([measure_time])) AS [Date Measured], Min(My_Table.fAtmPM) AS [Min], Max(My_Table.fAtmPM) AS [Max], Avg(My_Table.fAtmPM) AS [Avg]

    FROM My_Table

    GROUP BY...

    Wendell
    Colorful Colorado
    You can't see the view if you don't climb the mountain!

  • RE: execute store proceduce in microsoft excel 2008

    As this is a forum for Microsoft Access, I think you will have better luck using an Excel forum. One that comes to mind is Windows Secrets, and the...

    Wendell
    Colorful Colorado
    You can't see the view if you don't climb the mountain!

  • RE: Min, Max & Average Query

    I think I missed something here - are you saying that you want to pull all records from a specific date, and then get the min, max and avg for...

    Wendell
    Colorful Colorado
    You can't see the view if you don't climb the mountain!

  • RE: Cascading (filtered) combo boxes in a datasheet or continuious form

    It appears that Access refuses to let you update views, whether they are indexed or not. We use views extensively as ODBC linked tables and as long as they...

    Wendell
    Colorful Colorado
    You can't see the view if you don't climb the mountain!

  • RE: Min, Max & Average Query

    Try the following:

    SELECT Min(My_Table.fAtmPM) AS Min, Max(My_Table.fAtmPM) AS Max, CDate(Avg([fAtmPM])) AS Average

    FROM My_Table;

    Note that DATE is a reserved word in Access because there is a Date() function that returns the...

    Wendell
    Colorful Colorado
    You can't see the view if you don't climb the mountain!

  • RE: Cascading (filtered) combo boxes in a datasheet or continuious form

    You are spot on in terms of the complexity of trying to do this in an ADP - it is much simpler if you use the .mdb/accdb approach and link...

    Wendell
    Colorful Colorado
    You can't see the view if you don't climb the mountain!

  • RE: Update field in MS-Access based on conditions

    Some questions:

    1) Is this all in one table or are multiple tables involved?

    2) What version of Access are you using?

    You should be aware that "" is looking for an empty...

    Wendell
    Colorful Colorado
    You can't see the view if you don't climb the mountain!

  • RE: Looking for an updatable record source from SQL for an Access form

    In 2010 you use the Import tab of the ribbon and choose ODBC. You then specify the DSN which points to the SQL Server database and indicate you want...

    Wendell
    Colorful Colorado
    You can't see the view if you don't climb the mountain!

  • RE: Looking for an updatable record source from SQL for an Access form

    We typically name views vwXXXXX so they show up after tables, which we prefix with t so they look like tXXXXXX and then the views show up at the bottom...

    Wendell
    Colorful Colorado
    You can't see the view if you don't climb the mountain!

  • RE: Looking for an updatable record source from SQL for an Access form

    The simplest way to achieve that is to create a view, and give it a unique index. Access will see that as a primary key when you link to...

    Wendell
    Colorful Colorado
    You can't see the view if you don't climb the mountain!

  • RE: Remove last character after last space in a string

    There is a function in Access that does a reverse search on a string - it is InstrRev(). Doing that will let you determine the position of the last...

    Wendell
    Colorful Colorado
    You can't see the view if you don't climb the mountain!

  • RE: Web for doesn't create

    What version of Access are you using? And is this an app you are trying to publish to the web that uses a SharePoint back-end?

    Wendell
    Colorful Colorado
    You can't see the view if you don't climb the mountain!

  • RE: Execute SQL stored procedure in Access

    I'm not sure there is a question in your post, but it seems that some clarification is needed. First, the major strength of Access is the ability to bind...

    Wendell
    Colorful Colorado
    You can't see the view if you don't climb the mountain!

  • RE: I have a corrupt database

    It appears that you have successfully recovered your database, or at least the tables and queries. From what I can tell, that tool doesn't recover forms, reports, macros or...

    Wendell
    Colorful Colorado
    You can't see the view if you don't climb the mountain!

Viewing 15 posts - 121 through 135 (of 274 total)