Access And Outlook Integration Without Import/export

Oct 18, 2005

Hi all,

I have an access Db that I use to manage contacts etc. I regularily send out newsletters and emails to the contacts in that Db.

I want to know if there is a way I can essentially track the emails from access in outlook.
eg. based on field "email" it can see the emails incoming and outgoing in Outlook and makes a new record in my table "communications" that also tracks phone calls and other comm's.

Tbls - Contacts, Communications, Company

It would be great if all email communications could just automatically be listed in the access table communications with a link to the email in outlook (not the actual email, only the subject line and a hyperlink to the email)

I have been scouring the web for something to do this and have found lots of kinda's or not quite's. I don't want to import my outlook email to a table if possible.

I run Outlook and Access 2003 (Office 2003) on XP SP2 box.

Thanks Heaps if you have any idea what I am after!

C

View Replies


ADVERTISEMENT

Modules & VBA :: Access Outlook Integration Using LastModificationTime

Sep 11, 2014

I am programmatically importing Outlook into Access and I want to restrict it to only those contacts that have been updated since the last import. My program has some date conversion or syntax flaw that I can't figure out. The important parts below...

DateStart = #1/1/1900#
DateStart = Nz(DMax("CMDBCreatedDateTime", "Outlook_Control"), #1/1/1900#)
MsgBox Format$(DateStart, "General Date")

[Code].....

View 3 Replies View Related

Import From Access To Outlook

Jun 26, 2006

Hi,
I want to import a contact database to outlook but for that I have to design new fields in the Outlook form. The design is no problem, and I can even enter information and save it, but when I want to import data from access, it does not show the new fields!?

What could I do? Any idea?
Thanx!
john

View 1 Replies View Related

Import Outlook Form Data Into Access

Aug 8, 2007

Hi all

I've searched everywhere for a solution to this problem....and every site I come to has numerous examples of how to save Outlook Contact data into a database, but nothing on how to automatically store info from forms into Access table.

So, I assume the code will be in Access. When you run the macro it will look in a certain email folder, return all of the data within the forms in that folder and store it into an Access table.

Does ANYBODY know how to do this? I thought it'd be a much more common problem than it appears to be??

Or am I just being stupid :confused:

Thanks for your help! :)

View 3 Replies View Related

How To Export Access Table As Outlook Contact Group Without First Using Excel

Aug 6, 2012

I have an Access 2007 SQL database with 20 users. The DB has a list of about 3,000 email addresses that I want to export to Outlook for mass mailing. I've already got the services of an SMTP mail service that allows 1000 mails at a pop to be sent, and I've already written in the logic to separate the list into groups of 1k.

The problem I'm having is that I'm currently exporting from Access 2007 to Excel 2003 format (for some unknown reason Outlook 2007 does not directly interface with Access 2007), and then I have to manually go through the import steps within Outlook to bring the data from each 1k name group spreadsheet into a contact group for mailing.

It all works fine as it is, but it's clunky as hell. I want to automate that process, but I'm not very familiar with Outlook. I'm not even sure what the file format is for a group. Surely it must have its own format, like group1.xxx, or something. My ultimate objective is to export straight from access to the .xxx (whatever it is) format, direct it straight to the appropriate folder within Outlook and in the process eliminate the need for the more tedious steps required to import each Excel file within Outlook that I'm currently using.

View 8 Replies View Related

Modules & VBA :: Export Email Contact Address To Outlook Using Access 2003

Feb 3, 2015

I'm using an unbound text box and a command button to filter a list of contacts on a continuous form. The continuous form has a query for the record source and the list ends up showing only what is in the strWhere filter

Me.Filter = strWhere
Me.FilterOn = True

Is there a way to have Access 2003 take this filtered list and populate the To: field in Outlook or whatever the default mail client is? Each email needs to be deliminated by ";"

View 5 Replies View Related

Access Export AA Planner Import

Jun 24, 2006

I'm new to this forum so please excuss me if my question isn't in the right format.

I'm trying to export a database to a progam by the name of AA Planer.
I did a google on the phrase "access exprort AA Planner" and I got web page that said to "export the data in CVS format where Exel would acept it." So that brought me to the asumtion to export the data in CVS to import it to AA Plannner. Would I be right in making that asumtion.

View 1 Replies View Related

General :: Microsoft Access Integration With Whatsapp

Oct 28, 2014

I am would like to build a microsoft access database such as complaint monitoring system.. I could integrate microsoft access 2007 with whatsapp? So that I could deliver complaint calls messages from my access 2007 db to whatsapp chat.

View 1 Replies View Related

General :: MS Access Database Integration With SMS Messages

May 17, 2013

I have an new challenge, in which i would like to setup an application, which has to read the data from SMS. For an example user has to send the sms message which needs to be stored in MS Access database, how can we do this.

View 1 Replies View Related

General :: Cannot Use ODBC To Import From / Export To / Or Link To External Microsoft Access

Mar 16, 2014

I am trying to create an ODBC link to a copy of the Northwind data base.I am running Win7 on a 64 bit operating system but am keeping office running as 32 bit for Access, Excel , Visio etc due to the fact that I have a lot of old apps tied to them.

When I attempted initially to create a new system DSN ODBC connection it only allowed me to use SQL drivers. (No plurry good) So after some searching I found out that I could use a file in C:WindowsSysWOW64 called "odbcad32.exe" which has allowed me to view /use the total list of drivers to import data.So I can set up a DNS ODBC named Northwind1 and I can access the database without problems using Excel.However if I try to use the same ODBC link in Access to connect to Northwind1 I get the following error message:"You cannot use ODBC to import from export to, or link an external ?Microsoft Access or ISAM database table to your database".

View 2 Replies View Related

Export The Export/import Specifications For Text Files

May 10, 2007

Hello,
Does anyone knows how can I export the export/import specifications (which file/directory) and how can I import/export the specifications between different versions of Access. Thanks!

View 3 Replies View Related

Import Mails From Outlook Via VBA

Aug 10, 2015

I use the following code to get all my mails into a table:

Code:
Option Compare
DatabaseOption Explicit
Private Sub Befehl17_Click()
' ##################### OutlookImport ##################################
Dim db As DAO.Database
Dim rs As DAO.Recordset

[Code] .....

I check all the mails in the "import-folder", import the content into the database and after that I move the mails into the "imported-folder".

Actually it works, but there are a lot of mails generate an error. I can handle that with the "On Error Resume Next" but so I lost many mails to move and I want to know why the error happens.

The protocol shows me the following error message: "Syntax error (missing Operator)" and Err.Description shows me the content of the mail.

View 4 Replies View Related

General :: How To Import PST Outlook File

Jan 22, 2013

Is there a way to import a PST outlook file into Access 2010 or 2013. Or is there a Plug-in needed that can do it.

View 3 Replies View Related

Queries :: Automate Outlook Task To Export Common Query Every Day

Jun 29, 2013

I've created an outlook task to export a common query I do every day, is there a way to automate it so it will happen automatically without me pressing Run?

I use office 2007 on a company laptop with tight network restrictions (so no Windows Task Scheduler)..

View 1 Replies View Related

Export / Import To And From Excel

May 5, 2005

hi,

I'm having a small but annoying problem exporting data to excel and then importing it back..

The problem is that when i export a table to Excel - it changes the date format from dd/mm/yy (which is what i have in Access) to DD-MMM-YY (automatically in Excel)

This proves to be a problem because when i import the spreadsheet back Access gives me a data type conversion error.

Its easily solved manually by changing the field in excel to dd/mm/yy format but annoying as the user will have to do this everytime they export and import!

Any suggestions??

Thanks in Advance..

View 6 Replies View Related

Import / Export Table

May 18, 2007

Who can help me out?? :confused:

I am looking for 2 scripts

1) for exporting an existing table with data to an seperate MDB file
(filename to be given by user using a dialogbox)
2) importing the MDB file (from question 1) back into the existing table in
the original database. Script does not have to worry for dublicate data.

View 1 Replies View Related

Automating Import And Export

Feb 11, 2013

I would like to automate this daily process: In this order import or link, (not sure which is the best option) a fixed width table, add an ascending number to the end of each of the records, reverse the order, and finally export to fixed width .txt documents depending on the quantities in one field. There would be 3 text files exported, max.

View 4 Replies View Related

Importing Import/Export Specs

Dec 26, 2006

Is there a way to move import/export specifications from one database to another?

View 5 Replies View Related

Newbie Import/Export Problems Please Help!!!!

Feb 21, 2008

I created a DB to track soldier information. Each month reports are due to Brigade. Each Company and Battalion has there own version of the DB. What I need to do is export data from the Company then import it to the Battalion. Then I need to export the info from the Battalion and import them into the Brigade. This information is either all new for a new soldier or updated info for an existing record for an existing soldier. I need to update all new changes to the info. What is the best method for doing this.

Also, when I try to export a .dbf, it pops up with an error saying there are duplicate field names. Im confused because ieach field name is unique.

Thanks for any help I can get.


Lt Butler

View 5 Replies View Related

Import/export Specification Editing?

Dec 16, 2004

Ok,
I'm new to a particular access database that is having problems.
Basically, it is using transfertext to transfer a database to another file, at least as far as I know.
Unfortunately, it's hanging, and as best as I can guess, its because something in the export specification file is not quite right.
Can anyone offer me an explanation of how to edit an import or export specification file? The MS help seems to indicate that it stored in the database, but I haven't been able to locate the file that is specified in the vba code. Nor did I see it elsewhere in the folder where the database is stored.

Any help is appreciated.

-Jeff

View 1 Replies View Related

How To Export Data And Then Import Into Word File

Oct 10, 2014

I have a database witch includes a continuous form (named frmExport). It could be very useful for me if i can find a way so to export data from access 2007 and then to import them into a word file.

Please note: The access data will be inserted into word table.

View 2 Replies View Related

Modules & VBA :: Export And Import Particular Cells From Excel Template

Jul 20, 2015

I have a few problems and I want them to be able to be done from switchboard:

1. Is there a way for me to export a particular report (after selecting it) to a closed excel template, that is formatted? It would open the excel template (that has a logo and column headings), export data to below the column headings, then save the file with a unique name?

2. Also, a way to import data from an excel file, after allowing the user to select file? Only data below the column headings mentioned above. Same data will be appended to existing table.

View 1 Replies View Related

Cannot Export, Import, Copy/paste, Rename Table With Data!

Feb 22, 2006

Hello everyone.

I've been in a new position for a new company for less than three weeks, and I need some help.

The Access database that we use has been in operation since 2002, and it has never been Compacted/Repaired (I asked my coworkers and supposed IT people, and they said "what's that?").

After adding *one* new field, I've reached the horrific "error 3190" (max 255 fields).

I've tried all of the following, allowing at least 12 hours for them to run, but I cannot:
export the data to Excel
import the data into a new database
copy/paste the records (because there are 12100+ and the max is 9500, I think; and because of the way the dd/mm/yy converted itself to dd/mm/yyyy)
or rename the table with the data.

Please, someone help me.

View 1 Replies View Related

Modules & VBA :: Password Parameter For Import / Export Data Macro

Jul 16, 2014

I am creating a ImportExportData macro that will link to my tables in the BE

However the BE has a password. I was told this would require coding.

I have even tried to 'convert macro to VB' and i get this:

Code:
DoCmd.TransferDatabase acLink, "Microsoft Access", "c: est.accdb", acTable, "Table1", "Table1", False

I then tried to enter the password in the last segment (StoreLogin) ie:

Code:
DoCmd.TransferDatabase acLink, "Microsoft Access", "c: est.accdb", acTable, "Table1", "Table1", False, "PASSWORD"

but that didn't work either, i got a "An expresiions you entered is the wrong data type for one of the arguments"...

View 2 Replies View Related

General :: Export And Import Data Using QIF - Quicken Interchangeable Format

Sep 9, 2013

How to Export and Import data into and from Access using a Quicken Interchangeable Format (QIF) ...

View 4 Replies View Related

Regularly Import / Export Different Records To Multiple Excel Worksheets

Mar 16, 2014

I'm building a data base for my company, which is composed of items we sell. I then need these records to populate our pricebooks, which are excel worksheets, under multiple workbooks.

So essentially, I would like to have all the fields separated by vendor, series and series items, then populate the proper Excel worksheet (within a supplier's workbook). I have the know how to build a query to narrow down a particular vendor/series/groupofitems, but I don't want to be creating an enormous list of queries which have to be run each time.

I also have the know how to create a joined table which pulls the item list into the proper group, creating one large table with every vendor, series, and items. But what I'm looking for is some type of hybrid, which will allow me to export all of the items to their corresponding worksheets in one fell swoop. This will be done regularly as prices from suppliers change, certain colors are discontinued, sizes added, etc.

I'm guessing when I use the query which creates the large table with all the product that it's indexed, and that I would be able to use this to then import the data into excel/export the data to excel. But I'm not sure about this.

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved