PC Review


Reply
Thread Tools Rate Thread

Defining Names for Outlook's import feature

 
 
Southern at Heart
Guest
Posts: n/a
 
      24th Nov 2008
I have an Excel file that is a table of names, addresses, phone numbers, etc.
It is continually being updated, so the number of records changes.
Occassionally I will import this using Outlooks omport wizard in a contact
folder, but when I do so it requires a 'Named Field', so I have to go back
and select all the data in the excel file again and give it a new name. Is
there a simpler way of having excel automatically give all the data on a
sheet a name that will remain 'all the data' regardless of how many lines are
added or deleted?
thanks.
 
Reply With Quote
 
 
 
 
Bob I
Guest
Posts: n/a
 
      24th Nov 2008
Save the file as a CSV then import that in Outlook.

Southern at Heart wrote:

> I have an Excel file that is a table of names, addresses, phone numbers, etc.
> It is continually being updated, so the number of records changes.
> Occassionally I will import this using Outlooks omport wizard in a contact
> folder, but when I do so it requires a 'Named Field', so I have to go back
> and select all the data in the excel file again and give it a new name. Is
> there a simpler way of having excel automatically give all the data on a
> sheet a name that will remain 'all the data' regardless of how many lines are
> added or deleted?
> thanks.


 
Reply With Quote
 
Gord Dibben
Guest
Posts: n/a
 
      24th Nov 2008
Create a Dynamic Named Range to expand as you add more data.

http://www.contextures.on.ca/xlNames01.html#Dynamic

Or just save the workbook as a *.csv file and point Outlook to that.


Gord Dibben MS Excel MVP



On Mon, 24 Nov 2008 11:20:06 -0800, Southern at Heart
<(E-Mail Removed)> wrote:

>I have an Excel file that is a table of names, addresses, phone numbers, etc.
>It is continually being updated, so the number of records changes.
>Occassionally I will import this using Outlooks omport wizard in a contact
>folder, but when I do so it requires a 'Named Field', so I have to go back
>and select all the data in the excel file again and give it a new name. Is
>there a simpler way of having excel automatically give all the data on a
>sheet a name that will remain 'all the data' regardless of how many lines are
>added or deleted?
>thanks.


 
Reply With Quote
 
Southern at Heart
Guest
Posts: n/a
 
      24th Nov 2008
Thanks! I like this idea of a dynamic name. But I can't get the syntax.
I've tried:

=OFFSET(Sheet1!$A$1,0,0,COUNTA(Sheet1!$1:$1),1)


My list of names is on sheet1, and that's all that's on that sheet. It
starts in the top left corner, A1. It's 6 columns wide, but the column count
can be dynamic too? If I understand it right.
Can someone adjust this or tell me the correct formula to set when I define
my name.
thanks,


"Gord Dibben" wrote:

> Create a Dynamic Named Range to expand as you add more data.
>
> http://www.contextures.on.ca/xlNames01.html#Dynamic
>
> Or just save the workbook as a *.csv file and point Outlook to that.
>
>
> Gord Dibben MS Excel MVP
>
>
>
> On Mon, 24 Nov 2008 11:20:06 -0800, Southern at Heart
> <(E-Mail Removed)> wrote:
>
> >I have an Excel file that is a table of names, addresses, phone numbers, etc.
> >It is continually being updated, so the number of records changes.
> >Occassionally I will import this using Outlooks omport wizard in a contact
> >folder, but when I do so it requires a 'Named Field', so I have to go back
> >and select all the data in the excel file again and give it a new name. Is
> >there a simpler way of having excel automatically give all the data on a
> >sheet a name that will remain 'all the data' regardless of how many lines are
> >added or deleted?
> >thanks.

>
>

 
Reply With Quote
 
Southern at Heart
Guest
Posts: n/a
 
      24th Nov 2008
I GOT IT!
=OFFSET(Sheet1!$A$1,0,0,COUNTA(Sheet1!$A:$A),COUNTA(Sheet1!$1:$1))

(I have no idea what offset means, or maybe I'd have figured this out
quicker!)


"Southern at Heart" wrote:

> Thanks! I like this idea of a dynamic name. But I can't get the syntax.
> I've tried:
>
> =OFFSET(Sheet1!$A$1,0,0,COUNTA(Sheet1!$1:$1),1)
>
>
> My list of names is on sheet1, and that's all that's on that sheet. It
> starts in the top left corner, A1. It's 6 columns wide, but the column count
> can be dynamic too? If I understand it right.
> Can someone adjust this or tell me the correct formula to set when I define
> my name.
> thanks,
>
>
> "Gord Dibben" wrote:
>
> > Create a Dynamic Named Range to expand as you add more data.
> >
> > http://www.contextures.on.ca/xlNames01.html#Dynamic
> >
> > Or just save the workbook as a *.csv file and point Outlook to that.
> >
> >
> > Gord Dibben MS Excel MVP
> >
> >
> >
> > On Mon, 24 Nov 2008 11:20:06 -0800, Southern at Heart
> > <(E-Mail Removed)> wrote:
> >
> > >I have an Excel file that is a table of names, addresses, phone numbers, etc.
> > >It is continually being updated, so the number of records changes.
> > >Occassionally I will import this using Outlooks omport wizard in a contact
> > >folder, but when I do so it requires a 'Named Field', so I have to go back
> > >and select all the data in the excel file again and give it a new name. Is
> > >there a simpler way of having excel automatically give all the data on a
> > >sheet a name that will remain 'all the data' regardless of how many lines are
> > >added or deleted?
> > >thanks.

> >
> >

 
Reply With Quote
 
Southern at Heart
Guest
Posts: n/a
 
      24th Nov 2008
Hmmm, Outlook doesn't recognize this coded 'named range'. It give me the
same old messege that this book doesn't contain any ranges... Guess I'll
have to just save it as a cvs file after all. How boring.

"Southern at Heart" wrote:

> I GOT IT!
> =OFFSET(Sheet1!$A$1,0,0,COUNTA(Sheet1!$A:$A),COUNTA(Sheet1!$1:$1))
>
> (I have no idea what offset means, or maybe I'd have figured this out
> quicker!)
>
>
> "Southern at Heart" wrote:
>
> > Thanks! I like this idea of a dynamic name. But I can't get the syntax.
> > I've tried:
> >
> > =OFFSET(Sheet1!$A$1,0,0,COUNTA(Sheet1!$1:$1),1)
> >
> >
> > My list of names is on sheet1, and that's all that's on that sheet. It
> > starts in the top left corner, A1. It's 6 columns wide, but the column count
> > can be dynamic too? If I understand it right.
> > Can someone adjust this or tell me the correct formula to set when I define
> > my name.
> > thanks,
> >
> >
> > "Gord Dibben" wrote:
> >
> > > Create a Dynamic Named Range to expand as you add more data.
> > >
> > > http://www.contextures.on.ca/xlNames01.html#Dynamic
> > >
> > > Or just save the workbook as a *.csv file and point Outlook to that.
> > >
> > >
> > > Gord Dibben MS Excel MVP
> > >
> > >
> > >
> > > On Mon, 24 Nov 2008 11:20:06 -0800, Southern at Heart
> > > <(E-Mail Removed)> wrote:
> > >
> > > >I have an Excel file that is a table of names, addresses, phone numbers, etc.
> > > >It is continually being updated, so the number of records changes.
> > > >Occassionally I will import this using Outlooks omport wizard in a contact
> > > >folder, but when I do so it requires a 'Named Field', so I have to go back
> > > >and select all the data in the excel file again and give it a new name. Is
> > > >there a simpler way of having excel automatically give all the data on a
> > > >sheet a name that will remain 'all the data' regardless of how many lines are
> > > >added or deleted?
> > > >thanks.
> > >
> > >

 
Reply With Quote
 
Gord Dibben
Guest
Posts: n/a
 
      25th Nov 2008
By golly.......you're right.

This type of named range is not recognized by Outlook.

Sorry for chasing you around like that.

Mayhaps someone else knows a workaround to get Outlook to recognize the
dynamic range?


Gord

On Mon, 24 Nov 2008 12:43:04 -0800, Southern at Heart
<(E-Mail Removed)> wrote:

>Hmmm, Outlook doesn't recognize this coded 'named range'. It give me the
>same old messege that this book doesn't contain any ranges... Guess I'll
>have to just save it as a cvs file after all. How boring.
>
>"Southern at Heart" wrote:
>
>> I GOT IT!
>> =OFFSET(Sheet1!$A$1,0,0,COUNTA(Sheet1!$A:$A),COUNTA(Sheet1!$1:$1))
>>
>> (I have no idea what offset means, or maybe I'd have figured this out
>> quicker!)
>>
>>
>> "Southern at Heart" wrote:
>>
>> > Thanks! I like this idea of a dynamic name. But I can't get the syntax.
>> > I've tried:
>> >
>> > =OFFSET(Sheet1!$A$1,0,0,COUNTA(Sheet1!$1:$1),1)
>> >
>> >
>> > My list of names is on sheet1, and that's all that's on that sheet. It
>> > starts in the top left corner, A1. It's 6 columns wide, but the column count
>> > can be dynamic too? If I understand it right.
>> > Can someone adjust this or tell me the correct formula to set when I define
>> > my name.
>> > thanks,
>> >
>> >
>> > "Gord Dibben" wrote:
>> >
>> > > Create a Dynamic Named Range to expand as you add more data.
>> > >
>> > > http://www.contextures.on.ca/xlNames01.html#Dynamic
>> > >
>> > > Or just save the workbook as a *.csv file and point Outlook to that.
>> > >
>> > >
>> > > Gord Dibben MS Excel MVP
>> > >
>> > >
>> > >
>> > > On Mon, 24 Nov 2008 11:20:06 -0800, Southern at Heart
>> > > <(E-Mail Removed)> wrote:
>> > >
>> > > >I have an Excel file that is a table of names, addresses, phone numbers, etc.
>> > > >It is continually being updated, so the number of records changes.
>> > > >Occassionally I will import this using Outlooks omport wizard in a contact
>> > > >folder, but when I do so it requires a 'Named Field', so I have to go back
>> > > >and select all the data in the excel file again and give it a new name. Is
>> > > >there a simpler way of having excel automatically give all the data on a
>> > > >sheet a name that will remain 'all the data' regardless of how many lines are
>> > > >added or deleted?
>> > > >thanks.
>> > >
>> > >


 
Reply With Quote
 
Southern at Heart
Guest
Posts: n/a
 
      25th Nov 2008
thanks anyway...


"Gord Dibben" wrote:

> By golly.......you're right.
>
> This type of named range is not recognized by Outlook.
>
> Sorry for chasing you around like that.
>
> Mayhaps someone else knows a workaround to get Outlook to recognize the
> dynamic range?
>
>
> Gord
>
> On Mon, 24 Nov 2008 12:43:04 -0800, Southern at Heart
> <(E-Mail Removed)> wrote:
>
> >Hmmm, Outlook doesn't recognize this coded 'named range'. It give me the
> >same old messege that this book doesn't contain any ranges... Guess I'll
> >have to just save it as a cvs file after all. How boring.
> >
> >"Southern at Heart" wrote:
> >
> >> I GOT IT!
> >> =OFFSET(Sheet1!$A$1,0,0,COUNTA(Sheet1!$A:$A),COUNTA(Sheet1!$1:$1))
> >>
> >> (I have no idea what offset means, or maybe I'd have figured this out
> >> quicker!)
> >>
> >>
> >> "Southern at Heart" wrote:
> >>
> >> > Thanks! I like this idea of a dynamic name. But I can't get the syntax.
> >> > I've tried:
> >> >
> >> > =OFFSET(Sheet1!$A$1,0,0,COUNTA(Sheet1!$1:$1),1)
> >> >
> >> >
> >> > My list of names is on sheet1, and that's all that's on that sheet. It
> >> > starts in the top left corner, A1. It's 6 columns wide, but the column count
> >> > can be dynamic too? If I understand it right.
> >> > Can someone adjust this or tell me the correct formula to set when I define
> >> > my name.
> >> > thanks,
> >> >
> >> >
> >> > "Gord Dibben" wrote:
> >> >
> >> > > Create a Dynamic Named Range to expand as you add more data.
> >> > >
> >> > > http://www.contextures.on.ca/xlNames01.html#Dynamic
> >> > >
> >> > > Or just save the workbook as a *.csv file and point Outlook to that.
> >> > >
> >> > >
> >> > > Gord Dibben MS Excel MVP
> >> > >
> >> > >
> >> > >
> >> > > On Mon, 24 Nov 2008 11:20:06 -0800, Southern at Heart
> >> > > <(E-Mail Removed)> wrote:
> >> > >
> >> > > >I have an Excel file that is a table of names, addresses, phone numbers, etc.
> >> > > >It is continually being updated, so the number of records changes.
> >> > > >Occassionally I will import this using Outlooks omport wizard in a contact
> >> > > >folder, but when I do so it requires a 'Named Field', so I have to go back
> >> > > >and select all the data in the excel file again and give it a new name. Is
> >> > > >there a simpler way of having excel automatically give all the data on a
> >> > > >sheet a name that will remain 'all the data' regardless of how many lines are
> >> > > >added or deleted?
> >> > > >thanks.
> >> > >
> >> > >

>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Help with defining names devproduct@gmail.com Microsoft Excel Worksheet Functions 3 14th Feb 2008 08:34 AM
HOW DO I GET THE IMPORT EXPORT FEATURE TO WORK IN OUTLOOK? =?Utf-8?B?Sk9O?= Microsoft Outlook Discussion 1 8th Apr 2006 09:43 PM
Outlook 2003 Suggest Names feature stops working steve Microsoft Outlook 1 16th Mar 2006 09:47 PM
Check names feature in outlook 2003 not working. =?Utf-8?B?RCBTbWl0aA==?= Microsoft Outlook Discussion 7 25th Jan 2006 09:36 PM
Defining Names russell \(skmr3\) Microsoft Excel Programming 1 25th Jul 2003 02:24 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 02:04 PM.