473,387 Members | 3,750 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Docmd.runsql

83
Hello. I have two questions:
Expand|Select|Wrap|Line Numbers
  1.  Private Sub Form_Load()
  2. Dim assID As Long
  3.    assID = DMax("CLng(Right([LSI_Case_Number],3))", "Master_Log")
  4.    Me.LSI_Case_Number = Month(Date) & Format(Year(Date), "yy") & "-" & Format(assID + 1, "000")
  5. End Sub 
  6.  
It reads an indentifier cursor error. In my table LSI_Case_Number is a text variable

Next question:
I have a form that has all the variables from my main table: Master_Log, and one of the variables is Disposition.
Disposition is automatically filled in upon hitting enter(it depends on many of the variables in the form).
If the disposition says "rejected", I would like the case to be sent to the "Rejected" table(which is just an empty copy of the Master_Log), and deleted from the Master_Log.

I think I am supposed to use Docmd.runsql, but does it matter if try to use that command in an after_update Disposition. I think it does matter, it needs to be a DoSql sub.
Here is my poor attempt:
Expand|Select|Wrap|Line Numbers
  1. Private Sub DoSql()
  2. Dim SQL As String
  3. If Me.dispostion = "Reject" Then
  4. SQL = "APPEND Rejected"
  5. End If
  6. DoCmd.RunSQL SQL
  7. End Sub
  8.  
Apr 4 '07 #1
3 2547
Rabbit
12,516 Expert Mod 8TB
Hello. I have two questions:
Expand|Select|Wrap|Line Numbers
  1.  Private Sub Form_Load()
  2. Dim assID As Long
  3.    assID = DMax("CLng(Right([LSI_Case_Number],3))", "Master_Log")
  4.    Me.LSI_Case_Number = Month(Date) & Format(Year(Date), "yy") & "-" & Format(assID + 1, "000")
  5. End Sub 
  6.  
It reads an indentifier cursor error. In my table LSI_Case_Number is a text variable

Next question:
I have a form that has all the variables from my main table: Master_Log, and one of the variables is Disposition.
Disposition is automatically filled in upon hitting enter(it depends on many of the variables in the form).
If the disposition says "rejected", I would like the case to be sent to the "Rejected" table(which is just an empty copy of the Master_Log), and deleted from the Master_Log.

I think I am supposed to use Docmd.runsql, but does it matter if try to use that command in an after_update Disposition. I think it does matter, it needs to be a DoSql sub.
Here is my poor attempt:
Expand|Select|Wrap|Line Numbers
  1. Private Sub DoSql()
  2. Dim SQL As String
  3. If Me.dispostion = "Reject" Then
  4. SQL = "APPEND Rejected"
  5. End If
  6. DoCmd.RunSQL SQL
  7. End Sub
  8.  
Well, I tested it and it works. Are you sure the last 3 characters will always be numbers?

An Append SQL is contructed like this:
Expand|Select|Wrap|Line Numbers
  1. INSERT INTO TableName1
  2. SELECT Fields
  3. FROM TableName2;
  4.  
Apr 4 '07 #2
jl2886
83
So what would my code look like for the append and delete look like for an after update of my dispostion variable.
The assign id works but only when i load the form. Can I do a click statement that assigns the lsi_case_number. and for some reason the year is 05.
Apr 4 '07 #3
Rabbit
12,516 Expert Mod 8TB
So what would my code look like for the append and delete look like for an after update of my dispostion variable.
The assign id works but only when i load the form. Can I do a click statement that assigns the lsi_case_number. and for some reason the year is 05.
I don't know what your code would look like, I don't know anything about how table structure.

Yes, you can put the code in your on load in the on click event of a control.
Apr 4 '07 #4

Sign in to post your reply or Sign up for a free account.

Similar topics

0
by: Jim | last post by:
I am using Access 97 on a PC running Windows NT 4.0 SP6a. I have some code (shown below) intended to add a set of records to one table (tblGradeProps) when a new record is created in another...
4
by: Rotsj | last post by:
Hi, i try to execute an update query from within a form, but i get the message: run time error '3144'. Syntax error on the update statement when i try something like this: DoCmd.RunSQL...
0
by: Andy | last post by:
Hello, I am running an sql statement that INSERTS INTO a table. If I run the query using docmd.runSQL, it works fine - new records are added to the table and duplicate records are disregared (...
3
by: Pathfinder | last post by:
Hi All I am trying to run the below but I receive the following error "runsql action requires an argument consisting of an SQL statment" Dim MySQL$ MySQL$ = "Select * from mytablename"...
7
by: Richard Hollenbeck | last post by:
Help! I don't know why this isn't working: Private Sub Combo9_Change() Dim UsersCourseSelection As String UsersCourseSelection = Me("Combo9").Value Combo13.Visible = True 'the following...
8
by: RC | last post by:
In my Access 2002 form, I have a combo box and on the AfterUpdate event I use DoCmd.RunSQL ("UPDATE .... to update records in a table. When it starts to run I get a message "You are about to...
6
by: David | last post by:
I am trying to insert an employee number into the EmpNbr field in my main table from a form where I add a new employee to my employee table. I was hoping this command would work, but it isn't. ...
2
by: ben | last post by:
I have the following code in a VBA module: DoCmd.RunSql "Update tData Set sd = Log(Strike/Price) where symbol = '" & symbol & "'" This statement worked fine, and was using the built in math...
1
by: natural | last post by:
Good Afternoon I have an option grou[ and on the after update i would like to provide the user with a msgbox, and then action placed my docmd.setwarnings false everywhere, but i still get my...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.