Sign Up |  Live StatsLive Stats    Articles 35,345| Comments 159,790| Members 17,820, Newest waheguruhelpme| Online 192
Home Contact
 (Forgotten?): 
    Sikhism

   
                                                                     Your Banner Here!    

Sikh Philosophy Network » Sikh Philosophy Network » Current Affairs » Information Technology » Export to a specific worksheet in workbook

Export to a specific worksheet in workbook

Our Donation Goal : Why Donate? : Donate Today! : Donate Anonymously (ਗੁਪਤ) : Our Family of Supporters
Goal this month: 400 USD, Received: 35 USD (9%)
Please Donate...
Related Topics...
Thread Thread Starter Forum Replies Last Post
I need to make a workbook that sorts data Barry Walker Information Technology 1 28-Jul-2006 08:33 AM
Can I export a linked file to a specific excel worksheet? PerplexedinKY Information Technology 0 28-Jul-2006 08:24 AM
link worksheet cell to a spreadsheet in a multipage........Help ASU Information Technology 2 28-Jul-2006 08:17 AM
RE: print a specific record Ofer Cohen Information Technology 0 28-Jul-2006 07:59 AM
How to get specific data in VB danijela.simunovic@gmail.com Information Technology 3 01-Nov-2005 13:40 PM


Tags
export, specific, worksheet, workbook
Reply Post New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!
  #1 (permalink)  
Old 28-Jul-2006, 08:34 AM
Jerid B's Avatar Jerid B
Guest
 
Posts: n/a
   
   
Export to a specific worksheet in workbook

  Donate Today!   Email to Friend  Tell a Friend   Show Printable Version  Print   Contact sikhphilosophy.net Administraion for any Suggestions, Ideas, Feedback.  Feedback  

Register to Remove Advertisements
Is it possible to export a query or report to a particular sheet within a
workbook?
I tried using a macro (OutputTo) and choose the output file to:
C:\Temp\Quote.xls"Data!"
Workbook name is Quote.xls and the sheet is data.
We have so many users that need this particular report, but only so many
copies of Access here.
I get an error saying Access can not save the outfut file and lists reasons.
All reasons listed I checked are legit except possibly the location because
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/information-technology/13098-export-to-a-specific-worksheet-workbook.html
of how I addressed the actual sheet in the output file.
Access 2003 - Excel 2003





 
Do share your immediate thoughts or reactions on this issue? We value your views! Login Now! or Sign Up Today! to share your views with us.. Gurfateh!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 28-Jul-2006, 08:34 AM
AFSSkier's Avatar AFSSkier
Guest
 
Posts: n/a
   
   
RE: Export to a specific worksheet in workbook

Do a Link Table to the Spreadsheet Tab. (make sure you have the field headers
in the spreadsheet. Then do an Update Query joining the [SourceTable] to the
[SpreadsheetTable]. You can then do an Append Query to add new records to
the spreadsheet with an Is Null expression.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13098

If I don't have the field headers already in the spreadsheet, I do a Query
to create the 1st set of records (or 1 record to get only the fields), run,
copy & paste the results into the Spreadsheet.
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13098
--
Thanks, Kevin


"Jerid B" wrote:

> Is it possible to export a query or report to a particular sheet within a
> workbook?
> I tried using a macro (OutputTo) and choose the output file to:
> C:\Temp\Quote.xls"Data!"
> Workbook name is Quote.xls and the sheet is data.
> We have so many users that need this particular report, but only so many
> copies of Access here.
> I get an error saying Access can not save the outfut file and lists reasons.
> All reasons listed I checked are legit except possibly the location because
> of how I addressed the actual sheet in the output file.
> Access 2003 - Excel 2003
>
>

Reply With Quote
  #3 (permalink)  
Old 28-Jul-2006, 08:34 AM
SusanV's Avatar SusanV
Guest
 
Posts: n/a
   
   
Re: Export to a specific worksheet in workbook

Hi Jerid,

Not sure if this will help you in your case, but if you use
TransferSpreadsheet rather than OutputTo, it will create a new spreadsheet
in an existing workbook. For example, I use the below code to first create a
new Excel file using OutputTo, then append another table to the Excel file
as a new sheet in the same book. (Note the file name is the same in both
actions, but data is from 2 separate tables.) The new worksheet will be
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13098
named the same as the source table or query.

DoCmd.OutputTo acOutputTable, "Legacy_Pump", acFormatXLS, "c:\temp\" &
VesselName & "_Pumps.xls", 0
DoCmd.TransferSpreadsheet acExport, acSpreadsheetTypeExcel9,
"HasPlan_Pump", "c:\temp\" & VesselName & "_Pumps.xls"

--
hth,
SusanV

"Jerid B" wrote in message
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13098
news:E8633593-D16D-4F9E-AB44-7A9640C05D4F@microsoft.com...
> Is it possible to export a query or report to a particular sheet within a
> workbook?
> I tried using a macro (OutputTo) and choose the output file to:
> C:\Temp\Quote.xls"Data!"
> Workbook name is Quote.xls and the sheet is data.
> We have so many users that need this particular report, but only so many
> copies of Access here.
> I get an error saying Access can not save the outfut file and lists
> reasons.
> All reasons listed I checked are legit except possibly the location
> because
> of how I addressed the actual sheet in the output file.
> Access 2003 - Excel 2003
>
>



Reply With Quote
  #4 (permalink)  
Old 28-Jul-2006, 08:34 AM
Douglas J Steele's Avatar Douglas J Steele
Guest
 
Posts: n/a
   
   
Re: Export to a specific worksheet in workbook

Unfortunately, Access no longer has the ability to update linked Excel
spreadsheets (at least, Access 2002 and Access 2003 don't). This is due to a
lawsuit Microsoft recently lost.

--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)


"AFSSkier" wrote in message
news:08F7F690-1445-400D-BC1E-E20AE4130696@microsoft.com...
> Do a Link Table to the Spreadsheet Tab. (make sure you have the field

headers
> in the spreadsheet. Then do an Update Query joining the [SourceTable] to

the
> [SpreadsheetTable]. You can then do an Append Query to add new records to
> the spreadsheet with an Is Null expression.
>
> If I don't have the field headers already in the spreadsheet, I do a Query
> to create the 1st set of records (or 1 record to get only the fields),

run,
> copy & paste the results into the Spreadsheet.
> --
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13098
> Thanks, Kevin
>
>
> "Jerid B" wrote:
>
> > Is it possible to export a query or report to a particular sheet within

a
> > workbook?
> > I tried using a macro (OutputTo) and choose the output file to:
> > C:\Temp\Quote.xls"Data!"
> > Workbook name is Quote.xls and the sheet is data.
> > We have so many users that need this particular report, but only so many
> > copies of Access here.
> > I get an error saying Access can not save the outfut file and lists

reasons.
> > All reasons listed I checked are legit except possibly the location

Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13098
because
> > of how I addressed the actual sheet in the output file.
> > Access 2003 - Excel 2003
> >
> >



Reply With Quote
  #5 (permalink)  
Old 28-Jul-2006, 08:34 AM
Ron2006's Avatar Ron2006
Guest
 
Posts: n/a
   
   
Re: Export to a specific worksheet in workbook

The advise from Douglas is relative to AFSSkier's suggestion.

In the transferspreadsheet acExport you can specify the "Tab" name
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13098
that you want the exported data to go to. It is called the "rangeName",
I believe. You can export/create as many tabs as Excell can handle all
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13098
in the same XLS file.

Ron

Reply With Quote
  #6 (permalink)  
Old 28-Jul-2006, 08:34 AM
Ron2006's Avatar Ron2006
Guest
 
Posts: n/a
   
   
Re: Export to a specific worksheet in workbook

The advise from Douglas is relative to AFSSkier's suggestion.

In the transferspreadsheet acExport you can specify the "Tab" name
that you want the exported data to go to. It is called the "rangeName",
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13098
I believe. You can export/create as many tabs as Excell can handle all
in the same XLS file.

Ron

Reply With Quote
  #7 (permalink)  
Old 28-Jul-2006, 08:34 AM
Ron2006's Avatar Ron2006
Guest
 
Posts: n/a
   
   
Re: Export to a specific worksheet in workbook

If you are going to be using the same workbook over and over you may
want to read the following. It describes some naming problems that you
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13098
may encounter with the tab name.

http://alexdyb.blogspot.com/2006/07/...cel-range.html

Ron

Reply With Quote
  #8 (permalink)  
Old 28-Jul-2006, 08:34 AM
Jerid B's Avatar Jerid B
Guest
 
Posts: n/a
   
   
Re: Export to a specific worksheet in workbook

  Donate Today!  
Thanks for the info...
I decided to export to a workbook and overwrite each time it's updated.
Then I have another workbook with the fromat and am using a macro to update
from the spreadsheet that Access is exporting too. It works out rather
smoothly.

"Ron2006" wrote:

> If you are going to be using the same workbook over and over you may
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13098
> want to read the following. It describes some naming problems that you
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=13098
> may encounter with the tab name.
>
> http://alexdyb.blogspot.com/2006/07/...cel-range.html
>
> Ron
>
>

Reply With Quote
   Click Here to Donate Now!

Support Us!
Become a Promoter!
Gurfateh ji, you can become a SPN Promoter by Donating as little as $10 each month. With limited resources & high operational costs, your donations make it possible for us to deliver a quality website and spread the teachings of the Sri Guru Granth Sahib Ji, to serve & uplift humanity. Every contribution counts. Donate Generously. Gurfateh!
ReplyPost New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!

Bookmarks


(View-All Members who have read this thread : 0
There are no names to display.

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Tools Search
Search:

Advanced Search
Display Modes

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 On
Trackbacks are On
Pingbacks are On
Refbacks are On

» Gurbani Jukebox
Listen to Gurbani while surfing SPN!
» Active Discussions
sikhism Who is "Mohan"?
Today 08:46 AM
22 Replies, 335 Views
sikhism How important is Matha...
Today 08:12 AM
59 Replies, 1,038 Views
sikhism need urgent advice.......
Today 06:46 AM
6 Replies, 81 Views
sikhism ਨਾਮਾ
Today 06:37 AM
2 Replies, 53 Views
sikhism Sikh Diamonds Video...
Today 04:23 AM
6 Replies, 116 Views
sikhism Are Creator and Creation...
Today 01:30 AM
44 Replies, 2,837 Views
sikhism Herman Hesse,...
Today 00:54 AM
13 Replies, 229 Views
sikhism On a Scale of Most...
Yesterday 21:42 PM
30 Replies, 1,277 Views
sikhism I became victim by...
Yesterday 19:50 PM
0 Replies, 44 Views
sikhism Sikh Books downloads
Yesterday 15:39 PM
2 Replies, 66 Views
sikhism Salok Sheikh Farid ji...
Yesterday 09:35 AM
0 Replies, 47 Views
sikhism In Punjab, three farmers...
Yesterday 05:36 AM
0 Replies, 49 Views
sikhism Supernatural Sikhs, what...
Yesterday 03:45 AM
19 Replies, 414 Views
sikhism Sukhmani Sahib Astpadi...
26-May-2012 22:57 PM
0 Replies, 51 Views
Do You Think You Are...
26-May-2012 09:59 AM
94 Replies, 8,258 Views
» Books You Should Read...
Powered by vBadvanced CMPS v3.2.2

All times are GMT +6.5. The time now is 09:20 AM.
Powered by vBulletin® Version 3.8.6
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.5.2 Copyright © 2004-12, All Rights Reserved. Sikh Philosophy Network


Page generated in 0.45151 seconds with 30 queries