Search results

  1. A

    VB Code to Edit/Delete SQL Query

    I've been searching the forums for a little while now and have had no luck in finding the solution. I tried looking under for "VBA editing SQL Query" and other various tags. What I am looking to do is create a VB code that edits a pre-existing crosstab query. I have been unsuccessful in...
  2. A

    Question Need some basic advice on mobile Access

    I am also interested in attempting to do something similar. At the moment I do not believe there is a 'simple' solution. I did read somewhere that the ANDROID OS does support SQLite. I am banking on getting a new phone soon and this inspired me: http://apcmag.com/windows-phone-7.htm The...
  3. A

    Force empty columns in a crosstab query

    Thank you for that sample database... it helped my problem a lot. I was trying to find a way to make a static frame for my crosstab query
  4. A

    Help with CrossTab Query

    I already noticed a flaw that would happen with this crosstab query. When there is no value, there is no column header. See attached. Since 11, 15, 16 have no values... They will be no date header for those days, which is problematic. How would i make a crosstab query that shows all 31 days...
  5. A

    form that adds record into tables. how can it be so complicated?

    I'm confused. It allows me to make new records. Go to the last record and click your "Next Record" button and it goes to a new record window.
  6. A

    Help with CrossTab Query

    Next problem. Now that i have the crosstab query working. I cannot get the column heading to sort by date. It appears to go by what ever shows up first in the input record Example: Any hints for solving this? I tried changing the SORT: to Ascending and it doesn't do anything. PARAMETERS...
  7. A

    Help with CrossTab Query

    Thank you so much.
  8. A

    Help with CrossTab Query

    I created a cross tab query that is based upon another query. Crosstab Query TRANSFORM First(Query_Reports_Range.[Vent]) AS FirstOfVent SELECT Query_Reports_Range.[MedID] FROM Query_Reports_Range GROUP BY Query_Reports_Range.[MedID] PIVOT Format([Daily_Rounds_Date],"Short Date");It works...
  9. A

    Find and Append New Record Using Form

    Here is an updated version of that sample database I linked earlier. You navigate around via search. Search allows you to open up worker overview. Overview allows you to View Detailed Worklog (double click on list), add to the worklog or go back to search. (I should of added detailed...
  10. A

    Find and Append New Record Using Form

    If someone comes in and works and the morning then skips afternoon and works the night. Those two work periods should be seperate and get their own record. imo I've never done payroll. I just know a majority of systems work on conditional statements. If Bob works past the 10hour point in a...
  11. A

    Find and Append New Record Using Form

    I would spend a lot more time into considering what you want your database to do and work from there. Setting up the tables should be your first priority, not creating forms. I really recommend changing your Emp_Work_Hours table. All you really need for imputing times are...
  12. A

    Start from the forum index. Click a topic and after loads you should see a NEW THREAD button...

    Start from the forum index. Click a topic and after loads you should see a NEW THREAD button. The button is right above the text "Threads in Forum : Reports" [IMG]
  13. A

    Start from the forum index. Click a topic and after loads you should see a NEW THREAD button...

    Start from the forum index. Click a topic and after loads you should see a NEW THREAD button. The button is right above the text "Threads in Forum : Reports"
  14. A

    Find and Append New Record Using Form

    I made a sample database that you can reference. It has a few things in it. Multi-Search, Double-Click Listbox->Open related form and example of a combo box. I would recommend not creating fields for AM/PM/Overtime if possible. Just keep it basic. Two fields: ClockIn/ClockOut. I don't...
  15. A

    Search Function

    I am new to the whole Access scene. I don't quite understand what rst/dao are so I got really confused looking at the code mentioned ealier. At first I tried using the code in my databse. Surpise... it didn't work. It failed saying something like 'invaid field name'. Dim db As DAO.Database...
  16. A

    Changing combo box based on text box value

    Maybe this will help. I found this example after looking to do something similar. The example uses a listbox but the concept is still there. I don't remember where I got this example from. All credit goes to them... I did not create this example database.
  17. A

    Another Scrub Joins!

    I'm fresh to the database scene and looking to learn MS Access. I've heard great things about the program and these forums. Should be a fun journey... Acelink
  18. A

    Help with SubForms & Tables

    Help with SubForms & List Box Hi... I am new to Access and just learning about databases. I created a scenario for myself and am trying to create a database. But I hit a snag Right now I'm trying to create an overview form where I can glance at the basics and get just the bare...
Back
Top Bottom