I have a challenge with a sales database.
There are two tables: header and detail.
Header has order_number and order_status, along with various other fields.
Detail has order_number, line_number, line_status.
The application is supposed to set header.order_status = 'C' when all...
I'm doing a data pull from an Oracle db to a .csv that I then import into Access. One field is a date; it's formatted in the table as mmddyyyy but I want to pull it as mmyyyy. I have this in my query as
SELECT to_char(d.posted_dt,'MMYYYY')
which works, but the column name then appears as...
I don't even know if this is possible in Access, but I'll throw it out there.
I have a text file containing an extract from a large mainframe db. Each record contains one 400 character field, and represents one of 3 types of data:
CUSSMITH99999123MAINSTNEWYORKNY10011 is a customer...
I have a table which users need to update via a form. There is a combo box which they use to select the record to update. The box has this code behind it:
Private Sub cmbGroup_AfterUpdate()
strGrpNumber = "SELECT * FROM tblGroups " _
& " WHERE GrpNumber = '" _
& Me!cmbGroup.Column(0)...
I have a form which synchronizes two combo boxes: the contents of box 2 depend on the selection made in box 1. This has been working perfectly, and I haven't modified anything in the form for several weeks.
Today I opened the form to check something, and now the cursor will not move past box...
I have a form, frmReports, with two fields: txtReportBegDate and txtReportEndDate. I use this to pass the date parameters to the query that is the record source for my report. The query works fine so I'm sure the parameters are being passed.
However, I want to use those parameters as part of...
I have a form which contains data from 3 tables:
Table A - the main table
Table B, C - supplemental tables
A is linked to B and C in one-to-many relationships. Because there are 3 tables with one-to-many relatioships, this is not an updatable recordset. I can view records but not add, update...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.