Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 14
Default Data from Access to Excel

Hi,

I have a database with 45000+ lines and increasing every month. I need
to create summary report ( one page or two ) based on this database.

I have tried using sumproduct with multiple criteria to extract the
information I require directly within the report/template. This works
fine, however I am finding 3 big disadvantages with this method.

1. The database is currently 45000+ lines and will soon cross the excel
limit of 64k lines.
2a. By using Sumproduct with multiple criteria ( upto 6 criteria's
before a summary total is derived), the calculation performed by excel
slows down the whole process drastically.
2b. I have some drop down in my report ( to select by country or
segment etc..), the recalculation takes around 30 sec to a minute at
times when changed.
3. With the database in the excel file, the file is extremely bulkly to
send it to a number of people.
4. I have 2 different databases which need to be looked into for the
summary one or two page report.

I am thinking of having the database extract into Access and extracting
the same into Excel.

1. Is there a process by which I can connect to Access database via
excel and get the summarised info in excel similar to sumproduct in the
cell within the output template/report.

2. Once the Access database is updated, I would need to refresh the
excel file to get the updated report.

3. I am open to any other suggestions on how to work with 2 or 3 huge
databases and quickly extract summary information in the way I want and
the final output file would not be bulky for circulation.

Using Pivot table is not an option since it has certain limitations.

Regards
Sandip.

  #2   Report Post  
Posted to microsoft.public.excel.programming
MH MH is offline
external usenet poster
 
Posts: 30
Default Data from Access to Excel

Store your data in Access, do your queries in Access and use either MS Query
to bring the data into Excel or VBA if you want to send out the information
to your clients along with the report.

MH

"Sandip" wrote in message
oups.com...
Hi,

I have a database with 45000+ lines and increasing every month. I need
to create summary report ( one page or two ) based on this database.

I have tried using sumproduct with multiple criteria to extract the
information I require directly within the report/template. This works
fine, however I am finding 3 big disadvantages with this method.

1. The database is currently 45000+ lines and will soon cross the excel
limit of 64k lines.
2a. By using Sumproduct with multiple criteria ( upto 6 criteria's
before a summary total is derived), the calculation performed by excel
slows down the whole process drastically.
2b. I have some drop down in my report ( to select by country or
segment etc..), the recalculation takes around 30 sec to a minute at
times when changed.
3. With the database in the excel file, the file is extremely bulkly to
send it to a number of people.
4. I have 2 different databases which need to be looked into for the
summary one or two page report.

I am thinking of having the database extract into Access and extracting
the same into Excel.

1. Is there a process by which I can connect to Access database via
excel and get the summarised info in excel similar to sumproduct in the
cell within the output template/report.

2. Once the Access database is updated, I would need to refresh the
excel file to get the updated report.

3. I am open to any other suggestions on how to work with 2 or 3 huge
databases and quickly extract summary information in the way I want and
the final output file would not be bulky for circulation.

Using Pivot table is not an option since it has certain limitations.

Regards
Sandip.



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 14
Default Data from Access to Excel

Hi,

This answers one question that it is better to use Access as a
database.

However is there any syntax which can be placed within various cells in
the report which can access the access database and provide the summary
information in the report/template. ( Please note that the extract
required is based on multiple criteria)

If not, is Microsoft query the only solution. I have no idea on how to
use VBA as mentioned above.

I am not versed with excel/access extraction process and hence a reply
in a little bit detailed way would be very much appreciated.

Regards
Sandip.

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 249
Default Data from Access to Excel

Also look at TransferSpreadsheet function from Access

http://office.microsoft.com/en-us/as...866541033.aspx

Use the query you created as the source.

--

Regards,

Dave Patrick ....Please no email replies - reply in newsgroup.
Microsoft Certified Professional
Microsoft MVP [Windows]
http://www.microsoft.com/protect

"Sandip" wrote:
| Hi,
|
| This answers one question that it is better to use Access as a
| database.
|
| However is there any syntax which can be placed within various cells in
| the report which can access the access database and provide the summary
| information in the report/template. ( Please note that the extract
| required is based on multiple criteria)
|
| If not, is Microsoft query the only solution. I have no idea on how to
| use VBA as mentioned above.
|
| I am not versed with excel/access extraction process and hence a reply
| in a little bit detailed way would be very much appreciated.
|
| Regards
| Sandip.
|


  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 14
Default Data from Access to Excel using sumproduct like function.

Hi,

I read through the link mentioned and its asked for using the Macro or
VB in access.

I am looking for some way of accessing 3 huge databases from access to
create summary reports in excel using sumproduct like function in
excel.

I have tried using sumproduct by having the databases in excel and it
works fine, however, the calculation sometimes takes an hour and the
file become too bulky to email.

Hence if i can keep the databases in access and derive the same output
in excel (using sumproduct like function) by connecting to access, the
whole process will be much quicker and simpler.

If possible, is there any tutorial or help available to that I can read
through and try is out.

Regards
Sandip.



Dave Patrick wrote:
Also look at TransferSpreadsheet function from Access

http://office.microsoft.com/en-us/as...866541033.aspx

Use the query you created as the source.

--

Regards,

Dave Patrick ....Please no email replies - reply in newsgroup.
Microsoft Certified Professional
Microsoft MVP [Windows]
http://www.microsoft.com/protect

"Sandip" wrote:
| Hi,
|
| This answers one question that it is better to use Access as a
| database.
|
| However is there any syntax which can be placed within various cells in
| the report which can access the access database and provide the summary
| information in the report/template. ( Please note that the extract
| required is based on multiple criteria)
|
| If not, is Microsoft query the only solution. I have no idea on how to
| use VBA as mentioned above.
|
| I am not versed with excel/access extraction process and hence a reply
| in a little bit detailed way would be very much appreciated.
|
| Regards
| Sandip.
|




  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 249
Default Data from Access to Excel using sumproduct like function.

Yes, easily done in Access. These may help.

http://office.microsoft.com/en-us/as...880271033.aspx
http://www.databasejournal.com/featu...0895_3101941_1

You might also poke around here as well.

http://www.microsoft.com/communities...&lang=en&cr=US

--

Regards,

Dave Patrick ....Please no email replies - reply in newsgroup.
Microsoft Certified Professional
Microsoft MVP [Windows]
http://www.microsoft.com/protect

"Sandip" wrote:
| Hi,
|
| I read through the link mentioned and its asked for using the Macro or
| VB in access.
|
| I am looking for some way of accessing 3 huge databases from access to
| create summary reports in excel using sumproduct like function in
| excel.
|
| I have tried using sumproduct by having the databases in excel and it
| works fine, however, the calculation sometimes takes an hour and the
| file become too bulky to email.
|
| Hence if i can keep the databases in access and derive the same output
| in excel (using sumproduct like function) by connecting to access, the
| whole process will be much quicker and simpler.
|
| If possible, is there any tutorial or help available to that I can read
| through and try is out.
|
| Regards
| Sandip.


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Can Excel access data from Access?! Al Excel Discussion (Misc queries) 5 April 5th 08 03:52 PM
Data too large for Excel, need to query Access data for results Susan[_4_] Excel Programming 8 March 9th 06 03:02 PM
Calculate data from Access and return to Access Mary Fran Excel Programming 0 January 17th 06 02:10 PM
Transfer Data from Excel 2000 to the Access data base André Lavoie Excel Programming 1 September 28th 05 03:22 PM
Access data -work in Excel- save in Access s_u_resh Excel Programming 1 October 25th 04 12:52 PM


All times are GMT +1. The time now is 10:13 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"