| Thread | Last Post | Replies |
|
| data type mismatch | 04 Apr 2008 16:18 GMT | 4 |
I have a start date text formatted as 8 digits (DDMMYYYY). This query says there is a data type mismatch but it has worked before. SELECT CVDate(Format([StartDate],"00\/00\/0000")) AS expr1, Count(caisreport.StartDate) AS [Count]
|
| Random Selection | 04 Apr 2008 15:45 GMT | 18 |
I have a Table (Q1) with several fields (Site, Rep, Cust, ID, Prod, Serv, Date, Act). I need to randomly make a couple of selections. There are three "Prod" types. I need to select two "Prod" per Rep. There are about fifty Reps so my end number of entries should be 150. The Table ...
|
| sub query count | 04 Apr 2008 14:37 GMT | 8 |
SELECT ActivityDate, tblEmployee.first_name, (Select count(*) from tblDetails INNER JOIN tblEmployee on tblDetails.Employee_ID = tblEmployee.Employee_ID where
|
| append query key violations | 04 Apr 2008 14:36 GMT | 1 |
I need to run a query that appends records from a table to the exact same table in another database. I run it, and it it refuses to add the new records saying that there are key violations. And yet if I do a copy and paste append, it will work. (see SQLcode below)
|
| Question on one to many query | 04 Apr 2008 14:34 GMT | 1 |
I believe I may need to set my structure up different, but maybe not. We wanted to build a database that is basically just data entry of a written event form that is filled out. There are several 1 to many relationships, so I broke these all out in tables. The main table, ...
|
| Date() | 04 Apr 2008 14:32 GMT | 1 |
We were just upgraded to 2007 from 2003. I have a database that I use every day that has different errors in it now that it has been converted to 2007. One is 2007 doesn't seem to accept Date() anymore. I use this to query only current dates. Is there something I can use to ...
|
| SQL Text Delimited | 04 Apr 2008 14:24 GMT | 2 |
I have a function that works great, it makes active stores not active. Here's the code. For Each varItem In Me.lstActiveStores.ItemsSelected strSQL = "UPDATE [MasterTbl] " & "SET [Indicator] = FALSE " & _
|
| update query question | 04 Apr 2008 14:18 GMT | 2 |
good day I have a table with two fields holding and paid both are yes/no holding is checked on when invoice received and approved what I need to do is run a query to uncheck holding and check paid but I
|
| 2 left joins in access 2003 | 04 Apr 2008 14:11 GMT | 2 |
I am having an issue getting a query to work in access 2003. I have some linked tables, from an sql 2003 server. I have written the T-SQL statement and it works the way I need it to for the report: select assigned, ae, createdby, typeofrequest, count(Typeofrequest) as
|
| Queries try to the most current | 04 Apr 2008 09:20 GMT | 1 |
i'm trying to find the most recent date from this field. dbo_TRACKED_OBJECT_HISTORY.complete_time Here's the queries or SQL can somebody help me. SELECT dbo_UNIT.serial_number, dbo_UNIT.part_number, dbo_UNIT.part_revision,
|
| ACCESS 2003 Report & SQL Query | 04 Apr 2008 09:15 GMT | 1 |
Im using ACCESS 2003. Ive created two queries using Query Design wizard. Now what the problem is that, i want to bring the result of those two queries as two fileds of a single report. Im a beginner to ACCESS. Its urgent. Please do help me. Thanks
|
| Cumulative total in a query | 04 Apr 2008 07:12 GMT | 1 |
Sku April FCST May FCST June FCST FCST AVG % of total Cumulative % total OIF00224 352,872 380,025 390,843 374,580 20% 20% MCX40 282,570 273,120 291,480 282,390 15% 35% GSP03953 158,550 198,810 170,100 175,820 9% 45%
|
| Multi List Values | 04 Apr 2008 06:11 GMT | 1 |
I've been stuck on something for 2 days, and I can't figure it out. The varItem is giving me a "0" value, and it should be giving me a concantenated text value. (i.e. 1 - Monroe NC) I'm trying to update a tables yes/no [Indicator] field, based on multi
|
| divide by 100 | 04 Apr 2008 05:16 GMT | 6 |
I have a table with 50,000 rows. The value in the col are currency and all need to be divided by 100 to show the correct currency amount. The column name is "Payment". I'm thinking this is easy but I'm just not able to figure it out. Below is an example from my table. Thank ...
|
| Switch, IIf or ? | 04 Apr 2008 03:28 GMT | 3 |
I have a table where each record consists of a series of posting dates, posting items and amounts. I need to display those posting items and amounts for each record that meeting a given date criteria. I am able to use the switch function to but it will only display the first ...
|