0
votes
0answers
18 views

Open a web form in Access 2010 via macro and auto populate field values based on previous form

Im an experienced access developer but Im now venturing into creating access databases that interact with SharePoint. Therefore Im not allowed to use VBA anymore and have to use macros and im finding ...
0
votes
0answers
18 views

Page Up Key not working in Access 2010

I have forms that are too long and require a scrollbar. The "Page Down" key is working but the "Page Up" key is not working. The key is working in Access 2007 but not in Access 2010 so it's not an ...
1
vote
1answer
30 views

Is it possible to pass parameters programmatically in a Microsoft Access update query?

I have a query that's rather large, joining over a dozen tables, and I want to pull back records based on an id field (e.g.: between nStartID and nEndID). I created two parameters and tested them as ...
0
votes
2answers
19 views

Query criteria date range

What criteria would I use to produce the following result for a query: The user is prompted for a single date which returns all records within 7 days of the entered date. I don't want the user to ...
0
votes
1answer
26 views

SQL reports error when secondary table has no records

I'm writing a Family Tree application with an Access 2010 back end and VB.NET front end. (Long story, not relevant here.) Most everything works, but I need to sort the marriages for a person. As with ...
0
votes
1answer
10 views

Access 2010: Report Prints Three Extra Pages

In Access 2010, I have a button that launches a macro that prints a report. Button->Macro->Report. The report is only on one page and is 8.1 in width. It will not go to 8. I have deleted the header ...
0
votes
1answer
19 views

Emulate SQL Server connector in Python?

I am a little confused about the pyodbc syntax. Basically I want to create a couple of functions to generate different strings configured for different authentication types; for pushing into pyodbc. ...
1
vote
1answer
44 views

Getting all rows between date range with min date in column

I'm trying to construct a SQL statement for MS Access to grab all sales from our database by product that have never been sold to a particular customer before 1/1/2013. I believe the following SQL ...
0
votes
1answer
30 views

Access Custom Primary Keys

I'd like to create custom primary keys in my Access database. The database is going to be multi-user, so I need a method that ensures each key is unique even when multiple users are trying to add new ...
-2
votes
1answer
23 views

Is there a place to get Microsoft Access Templates for forms/reports?

I was looking for a quick Form/Report template that I can incorporate a current database into by just binding the fields to the specific fields that are in the template.
1
vote
1answer
31 views

updating an Access 2010 Linked Table connection

How do I change the connection string of a linked table in Access 2010? I don't want to do it programmatically but through the interface. When I try to change it via the table's Properties I get the ...
0
votes
1answer
30 views

Using surrogate keys in linking table in Access - how to show “friendly” key as well

I am migrating a horrific database from Lotus Approach '97 to MS Access 2010. This is the first time I have used access, however I am familiar with SQL. I have a table of Events, and a table of ...
0
votes
2answers
45 views

Using the result of an Access query in another query.

I've searched the internet for a solution and racked my brains trying to figure this out, hopefully someone can help. Here is the basic situation. I have a list of transactions in a table. Each ...
-10
votes
2answers
207 views

How to perform a MS Access select query using c# interop [closed]

I would like to use c# interop com to run a query in Access. When the query is run I would like to save the data to a C# object (datatable or custom object). I am aware that I can use Jet or ODBC ...
-1
votes
1answer
18 views

How to iterate over table in Access 2010

I would like to iterate over the rows in my Payment table. User chose for what month and year has wants to book and I want to check in the each raw if this house was booked for this year and month. I ...
1
vote
1answer
64 views

MS Access 2010 Ranking Query comparing two columns for unique ranks

Your gracious help on this problem will be very appreciated for programming noob. I've tried to search google world for last 3 days and no luck. Background: I'm building a comprehensive analysis of ...
1
vote
1answer
24 views

Symbol required to enter date in text strings

I am working on a homework assignment for school, and I have come across one particular question which has me a little stumped. The question is, 11. What symbol does Access SQL require to enter ...
0
votes
2answers
34 views

Exporting Recordset to Spreadsheet

Just getting to grips some VBA (this stuff's new to me so bear with us!) From query ContactDetails_SurveySoftOutcomes, I'm trying to first find a list of all the unique values in the DeptName field ...
0
votes
2answers
36 views

Unable to connect to MS Access Database

This is my code: public class ConnectDB { Connection conn; Scanner kb=new Scanner(System.in); public String ID; public ConnectDB() { try { Class.forName ("sun.jdbc.odbc.JdbcOdbcDriver"); ...
1
vote
1answer
33 views

Update junction table

Here is my tables Proposal -------------- Id | ProposalNo SalesCall --------------- Id SalesCallReference (Junction Table) --------------- Id | ProposalID | SalesCallID A sales call can be ...
0
votes
3answers
58 views

Skip first three lines of CSV file (using DoCmd?) in MS Access

I need to skip the first three lines of a CSV file when loading into MS Access. The default CSV import does not drop the first three lines. I am thinking of writing a macro to ignore the first three ...
-2
votes
1answer
22 views

How to Print Out, and make Query for specific members of table in Microsoft Access?

I have a table in Microsoft Access 2010 that looks like this : Name : Address : Phone : How do I make print out, just 1 (one) line name on the table, not print out the whole table list? How do I ...
1
vote
1answer
15 views

Textbox calculation appears only after navigating through other records in access

I have a form that is linked to a table in Access. I have an additional field which displays the sum of a few fields in the table. This field on the form is not connected to the table. I have the sum ...
1
vote
2answers
21 views

Migration of web application backend MS Access 2003 to MS Access 2010

I have an asp application residing on Windows server 2003 -32bit and backend for the application is MS Access 2000. When I upgrade it to MS Access 2010, it throws error: 'Unrecognized Database format' ...
-3
votes
0answers
72 views

merging tables in Access 2010 [closed]

Basically I have got two data from excel. First is table A (master data) and table B(updated data) Table A consists of member who decrease and present member however the contact number or dept is not ...
2
votes
1answer
18 views

How can I track which procedures are running

Question: Is there a way to track all calls to subs and functions (kind of like a historical "Call Stack") that occur during the opening of a form? I'm not interested in functions that get called in ...
0
votes
1answer
40 views

Access Export as Spreadsheet Error - 3436 Failure creating file

I'm trying to put a time stamp in the file name of an Excel spreadsheet export out of Access. Here's my code: Private Sub Command31_Click() Dim timeStamp As String Dim XLfilePath As String ...
-2
votes
1answer
122 views

How to check whether Access Table exists with C#? [duplicate]

I am writing a program in c# where I need to check whether a table exits in a access file or not . If exist then data will be append to that table. `"SELECT * INTO [" + New_access_file + "]." + ...
0
votes
1answer
35 views

Building a form in Access can filter specific records in a table

Is it possible for an Access form to filter specific fields in the record source table so the user can deal with them only a part form the rest of the table fields? The table contains many fields and ...
0
votes
1answer
29 views

access 2010 writing SQL statements

I am writing SQL statements in Access 2010 for my homework. What I am trying to do is Display the Client Number, Client Name, Bookkeeper Number, First Name, and Last Name for all clients. Sort the ...
0
votes
1answer
41 views

running sum & add value to first row only

I am creating a ledger using MS Access 2010 I have the ledger report with unbound textbox to calculate the balance of each record include running sum for a calculation of 2 fields as below: ...
0
votes
0answers
41 views

Determine what user 'ms access database' is using to link to another database

When trying to import a table onto a ms-access database from another database, I get the error You don't have permission to import, export, or link to 'exampleTbl.' To import, export, or link to ...
1
vote
1answer
86 views

Populating field(s) in a table with values derived out of VBA code

I found some neat code (via here actually) for getting the username of the user currently logged in to Windows. Say I have a table called AdminEntry. I'd be looking to get the AdminEntry table set up ...
1
vote
3answers
49 views

How to remove period in Middle Initial ms access

I have two table that 1 table need to find a match on the other table. Say I have table1 and Masterfiles table. Table1 has a name field the same with Masterfiles. But table1 name field has different ...
1
vote
2answers
54 views

Insert values from two different tables into another different table with concatenate

I have a button which uses two separate queries that pull data from two tables and insert into another table: Dim lngID As Long Dim lngIDCallout As Long Dim strSQL1 As String lngID = ...
1
vote
1answer
107 views

Selecting record from a table/form in one ListBox and displaying it in a ListBox in another table/form

I'm having some trouble writing code for a button to add a selected record from one listbox(ListBoxForm2), to another listbox(ListBoxForm1). I've got a working button to remove a selected record from ...
0
votes
2answers
41 views

MS Access making navigation options on form NOT mutually exclusive

I'm creating a navigation form where some of the navigation buttons simply apply filters to the subform. Problem is right now each option is exclusive, i.e. I can select staff either by branch OR by ...
1
vote
1answer
27 views

How to make Access Ribbon Menu 'Sticky'?

I have developed an Access ribbon menu and it works. My question is how to make it 'Sticky?' (tab with selected option remains open) I.e., let's say you select an option from the 3rd tab of the ...
-1
votes
1answer
25 views

iff command issue in MS Access

Hi I am newbie in MS Access I am using the following expression to calculate the balance of my wallet Balance: Nz(IIf([In]=Yes,Sum([Cost]),0))-Nz(IIf([In]=No,Sum([Cost]),0)) I want to take ...
2
votes
2answers
294 views

Access VBA Form Private Sub calling Public Function in different Module

In my database I have a public function in a module that receives a SQL string and returns an open recordset. This function works just fine when called by other public subs, both in this module and in ...
0
votes
2answers
79 views

Excel to Access import, column determines field value

I am trying to create an Access database to track income and expenditures for a number of accounts. My difficulty is that my boss insists the people responsible for reporting expenditures on these ...
0
votes
2answers
202 views

Import Errors from Excel to Access Using DoCmd.TransferSpreadsheet acImport Method

I'm getting some import errors when importing data from Excel in to Access. I'm using the DoCmd.TransferSpreadsheet acImport, ... method to do the import. The column of data that is failing ...
1
vote
2answers
67 views

Access VBA Dimension only storing expected value the first time it is run

I've adapted this code from somewhere else. At the click of a button on a form it's meant to tell me the number of non-empty rows in a given range of cells (C1:C500) on an Excel spreadsheet... Sub ...
0
votes
1answer
127 views

Subscript out of range - Excel.Application.WorksheetFunction.CountA

I'm trying to count the number of non-empty cells in an Excel spreadsheet from MS-Access VBA. The idea is that I click a button on a form in MS-Access and the number of non-empty cells are stored as ...
0
votes
1answer
116 views

Excel's COUNTA equivalent in Access VBA to return number of non-empty rows from a spreadsheet

I want to run some VBA in Access to get a count of the number of rows that contain data within a specified range of cells in an Excel document. In Excel COUNTA does this nicely, but how would I ...
2
votes
2answers
85 views

Erratic behaviour with InStrRev when supplying start position

I don't understand the results of any of the below. I understand InStrRev gives position of last 'matches' (right-to-left) & can comprehend the result when I don't give a start position. No matter ...
1
vote
1answer
43 views

Muli-Option MS Access Reports

I am very new to MS Access and yet have been working (loosely) on a DB for a while. We have a DB that tracks membership. There is a table with all of the member info in there. When new and current ...
1
vote
1answer
46 views

Extracting UID from ODBC Connection in MS Access

I have a MS Access front end with tables linked to SQL Server. I used a file DSN to link tables, and upon opening Access database the user has to enter SQL server userID and password. Is there a way ...
2
votes
3answers
128 views

Query - If more than one record ID# (non primary key) matches, use later date or larger primary key

I built a MS Access Database that takes a survey to create a custom report. The survey application that was used does not give us the reports we need. I usually grab the data (excel) and import it in ...
1
vote
1answer
75 views

MS Access Asynchronous Queries

I have a basic SELECT query fired from an Access form that takes a while to execute, so I would like to run the query asynchronously and allow my users to continue using the form (or at least keep ...

1 2 3 4 5 9