0
votes
0answers
8 views

SearchForRecord not available in MS Access 2010 Web Database

Without using code (this is a web database) how can I simulate this functionality using another means? This is intended to update all the records visible on the form. Ideally I would use the ...
0
votes
1answer
23 views

count unique for field in crosstab query

I've searched for an answer to this, but can't seem to find anything that works to do a unique count in crosstabs. The closest I could find was: select count(myField) from (select distinct myField ...
1
vote
1answer
37 views

MS Access SQL LIKE query from C#

I have this query for Ms Access and im using C# and Ole DB commands. It works on Ms Access but when I'm passing the query from C# using OleDB, nothing happened. Anyway here's my code: SQL query ...
0
votes
0answers
9 views

Relationship building help in access 2010

I have 4 tables in my database (houses to repair). Each room of a house has a separate table, for example bedroom, bathroom, kitchen and patio. On each table are various areas in the room that are to ...
0
votes
1answer
25 views

Subquery top X of random rows not working (MS ACCESS)

I'm doing a subquery to select the top 5 of products for each supplier. The selection needs to be done randomly on the products for each supplier. For this I have made the following query (based on ...
-1
votes
0answers
21 views

How to make a query into a sub-form that refreshes when changes are made on fields in main form in access 2010 and a button is pressed?

I am still learning Vba and Access database (acdb). I have a main form that specify parameters for a query and a button that runs the query. I have the query that runs separately as well. Now what i ...
3
votes
2answers
51 views

How to set an event duration limit to define “same event” and “new event” in Access 2010 query or SQL?

I hope someone can help me! I am working in Access 2010 with datetime-stamped records (photographs from camera-traps) that signify visits by specific animals (SpeciesID, AnimalID) to different ...
2
votes
1answer
84 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
141 views

visual studio c# how to fill listbox with dataset query results

I am new to C# and have already run into a problem. I am writing a program to display a week or events separated by day. I don't have very much experience dealing with access databases, but I have ...
0
votes
2answers
55 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 ...
1
vote
1answer
196 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 ...
0
votes
0answers
67 views

How can I execute Queries in Access from Visual Studio

I'm having trouble passing VB Variables into Visual Studio Queries and Access Queries. The basic program keeps a database of NBA Players, the problem occurs within the Change Team function. I want to ...
1
vote
2answers
308 views

Checking and showing null value in MS Access Query

I'm trying to write an SQL query to show the sum of every category. The problem is that I need the sum of every category and even if the sum is zero it should still display the results. I am doing ...
1
vote
1answer
53 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
14 views

Access query select

I need help with a query on Access database that I don't know how to do. What I have is a database with a table diseases that stores diseases names and ID another one called Symptoms that stores ...
1
vote
1answer
83 views

Extact Whole Number From Decimal In Access Expression

I'm having trouble extracting the whole number from a number field in the expression builder in Access. Here's what I thought would work: Left([NumField],InStr(1,[NumField],".")-1) This does not ...
1
vote
1answer
625 views

building a search form in Access 2010

I am trying to make search customer form for access 2010. I like to have an option group based on a query search. I made a search query looking for first name or last name. two textboxes are also ...
1
vote
1answer
86 views

Calculate Sum of Products Over Time With Changes in Historical Values

Given two (simplified) tables in Access 2010: **tblDailyLabour** DailyLabourID - PK DateRecorded EmployeeID QtyHours **tblEmployeeHistory** EmpHistoryID - PK DateApplicable EmployeeID PayRate ...
1
vote
1answer
17 views

Aggregate query fails on log([data])

enter code hereI'm building an aggregate query in the design view. If I average the original data, everything works just fine. As soon as I try to average log([data]) I get an error: "Data type ...
0
votes
1answer
23 views

error on insert statement

I'm having an error over and over again, please anyone tell me what's wrong with my INSERT STATEMENT? here is my codes: Dim SQLcon As New OleDbConnection Dim SQLdr As OleDbDataReader ...
0
votes
2answers
64 views

Delete from <tablename> where <columname> Like <value> MS Access

I am using the following code to filter out some columns in my taglist: DELETE FROM TagSubs WHERE TAGNAME LIKE '*\CMD\*' OR '*\PAR\*' Now I thought this would just delete all the rows that are made ...
0
votes
1answer
44 views

How to collect 2 one to many relationships to create one running total?

From the diagram that I have above I need to sum the amount instock to I need Sum of amount sold for the certain bike Sum of amount produced for the certain bike Then to store the total in ...
1
vote
1answer
59 views

Use Left Function To Static Character

Is it possible to use the Left function, or another function if better suited, to left trim the values in a field up to a static character, in this case a dash? There is no set amount of characters ...
0
votes
0answers
192 views

Access query fields within VBA

Is it possible to reference a query field with VBA? The idea in my head was to check this field if it is equal to a certain value and if so, do something else on the form, based on this query field. ...
0
votes
2answers
204 views

How can I combine these two columns in access

I am attempting to combine two columns (from separate tables) in an access query based on the value of 2 other columns in the tables (semester and student_name in this instance), for instance if I had ...
0
votes
0answers
174 views

Creating MS Access report from two queries that may not fit together

I have a SQL query that has columns for the count of all departures, count of all intakes, month name, and month number. The count function is grouped by month. I have another query that has columns ...
0
votes
3answers
529 views

Add Criteria To VBA Code and Requery

So the following VBA code I have will requery the form based on the Combo1 value equal to January. Eventually, I'll have X number of years in the Combo value and only want to display all records based ...
0
votes
1answer
169 views

INSERT sql statement combined with SELECT and WHERE

I am trying to insert these values into a database, however, the INSERT and WHILE clause are incompatible with each other. Does anybody have any ideas how I could achieve my desired results in a ...
1
vote
4answers
122 views

AND in SQL Left Join causes run-time error in Access 2010

I appreciate any help you can give me. I am trying to use a SQL query as the recordsource for a form. strSQL = "SELECT " & DocID & " AS DocID,'" & DocumentType & "' AS ...
1
vote
1answer
296 views

Using Access Forms to manipulate queries and generate reports

I'm looking to create a report from an Access database. I have all my tables, the report, the queries I need, and just about everything but a way to manipulate the report that is user-friendly. The ...
1
vote
3answers
64 views

How to display a one to many relationship as one to one

I'm working with a paging system. For some of my co-workers I need to create something of a directory. Each person in the directory has a PAGER_ID and a MESSAGING_ID. The PAGER_ID is unique to a given ...
1
vote
2answers
1k views

Refresh MS Access Form/Query Based On Combobox Value

Pretty simple explanation. I have a table with 10 entries, 5 entries with the year 2010 and 5 entries with 2011 in a column. In the query I have, I use Like *2010 to filter out all entries equal 2010 ...
2
votes
1answer
73 views

Building a query in Access

I need to do a query to show how many time a person remained inside the office. I have a list that create a record of when the person entry in the office and record and other records when the person ...
1
vote
3answers
1k views

How can I sort the columns in a crosstab query, when the column data is dynamic?

I've been doing a bit of research on this topic and I can't seem either find a workable solution, or one that is explained well enough for me to implement. If you've ever created a crosstab query in ...
1
vote
2answers
428 views

Nested inner join & sub-select in Access

I have this SQL in Access, but it is giving me an error. I've tried moving the parenthesis around but it hasn't resolved the issue. SELECT a.title, a.id, a.name, l.user, l.time FROM Reports ...
0
votes
1answer
262 views

Changing the primary key of a SharePoint list?

I have three SharePoint lists that are linked to an Access 2010 database. I'm trying to write a query that will pull different columns of data from each table and display them together. I wanted to ...
1
vote
1answer
372 views

How to add a calculated column using conditions in a query in MS Access 2010

I have two tables and from that I am generating a query. I have columns in my query with field type yes/no. These are basically columns to determine the race of a person. The user enters information ...
1
vote
3answers
4k views

How to prompt user input parameters for SQL Queries in Access 2010

SELECT Transactions.TransactionNumber FROM Transactions WHERE (((Transactions.Date)>=#11/23/12#)) AND (((Transactions.Date)<=#11/23/12#)); The above code returns all the transaction that ...
0
votes
2answers
96 views

unmatched query

I'm having trouble with getting an unmatched query to work as I want. I'm using Access 2010 and it's an .accdb application. I have two tables. Day1 and Day2 They both have columns: position, artno, ...
1
vote
2answers
367 views

Microsoft Access SQL STDEV of COUNT of data

I have a table in MS Access 2010 I'm trying to analyze of people who belong to various groups having completed various jobs. What I would like to do is calculate the standard deviation of the count ...
1
vote
2answers
57 views

how would I make this query in microsoft access

I have just recently started working with microsoft access, and have been importing excel spread sheets into separate tables. the content of the tables is similar to following (i will place column ...
0
votes
1answer
151 views

Two Queries: Group by Column, Subtract Similar Columns, Show Totals

I have the following two queries setup in Access. Each query has only 1 line per org and the org names are consistent across the two queries. Query A (budget model based on Table A) Org, Jan, Feb, ...
1
vote
1answer
99 views

Comparing data between reporting periods MS Access

I have a big table that contains records for each reporting period in my project. The period is indentified by an integer 1, 2, 3, 4, 5, 6, 7. Each period contains about 7000 rows of tasks each ...
1
vote
2answers
2k views

Driving a MS Access query in a subform form from the main form

I have a subform in datasheet form. I want this subform to be filtered based on a combo box on the mainform. The data for the subform comes from a query. I have set the criteria of one of the fields ...
2
votes
1answer
57 views

Query date in Access

I have a database that stores date and time in a single column for each entry as - 8/29/2012 6:09:45 AM - as an example. I am looking for a way to query just today's date all regardless of the time. ...
1
vote
2answers
119 views

SQL Conditional Summing

Im trying to code a calculation in Access that involves the SUM of some values plus the result of an IF statement. Here is a table of the kind of data I'm dealing with (from 'CostBaseQuery) ...
0
votes
1answer
103 views

How to code this calculation in SQL [closed]

Im trying to code a calculation in Access that involves the SUM of some values plus the result of an IF statement. Here is a table of the kind of data I'm dealing with (from 'CostBaseQuery) ...
0
votes
2answers
216 views

SQL Error - field could refer to more than one table

I cant see why im getting the error "The specified field qb2.WellworkOIL could refer to more than one table listed in the FROM clause in your SQL statement" Based on the query below SELECT ...
0
votes
1answer
20 views

New query that gets data from 8 other queries into same structure

I have 8 queries that perform calculations and save the results in one of their columns. The column headers of each query follow the same structure; CompanyYearAssetID, CompanyName, AssetName, Year, ...
0
votes
1answer
67 views

How to turn '#Num!' values into zeros

I have a query that compiles and runs but some of the field values are '#Num!', how would i let Access know that if the cell contains the error to give me a zero? i tried IIF(Column Is ...

1 2