Exporting A Selection of Records to Excel

Hi All,
This is my first ever question to a forum, so please go easy on me! I'm also very new to Access and VBA. I'm building a database that stores (in related tables): TradingName, PropertyName, and PaddockName (as well as other relevant details). I have combined
(Joined) the data I require into a table as well as a query.
Now I want to export the Paddocks and Properties for each client. I have been able to export all clients and Paddocks (All Records) into Excel as well as individual Client and Paddock (Individual Record). But I want to be able to export all paddocks for
a property or a client (multiple records for a client or property).
My code is working for both scenarios (All Records and Individual Records) above but I'd like to know how to write code to export only selected Client or Property which is selected via a combobox.
The Code I have used seems to be typical on all forums I have visited, but none does what I want/need.
All help Appreciated
Thanks
Nath
This sub exports a SINGLE Record
'This Sub Exports ALL Records
Private Sub btnExportXls_Click()
Dim db As DAO.Database
Dim rs As DAO.Recordset
'Set db = DAO.DBEngine.Workspaces(0).OpenDatabase("C:\database.mdb")
Set db = CurrentDb
' Set rs = db.OpenRecordset("MasterSummary", dbOpenSnapshot)
Set rs = db.OpenRecordset("tblExpXlsClientPropPdkDetails", dbOpenSnapshot)
'Start a new workbook in Excel
Dim oApp As New Excel.Application
Dim oBook As Excel.Workbook
Dim oSheet As Excel.Worksheet
Set oBook = oApp.Workbooks.Add
Set oSheet = oBook.Worksheets(1)
'Add the field names in row 1
Dim i As Integer
Dim iNumCols As Integer
iNumCols = rs.Fields.Count
For i = 1 To iNumCols
oSheet.Cells(1, i).Value = rs.Fields(i - 1).Name
Next
'Add the data starting at cell A2
oSheet.Range("A2").CopyFromRecordset rs
'Format the header row as bold and autofit the columns
With oSheet.Range("a1").Resize(1, iNumCols)
.Font.Bold = True
.EntireColumn.AutoFit
End With
oApp.Visible = True
oApp.UserControl = True
'Close the Database and Recordset
rs.Close
db.Close
End Sub
This Sub Exports A Single Record (Paddock) and is commented out as I trialed the other sub.
'Private Sub btnExportXls_Click()
'' The following Sub only exported 1 record at a time and only copied data to selected cells, it doesn't move to next free cells.
''Export Selected Client/Property to Excel
''First you must set a Reference to the Microsoft Excel XX.X Object Library
' Dim appExcel As Excel.Application
' Dim wrkBook As Excel.Workbook
' Set appExcel = New Excel.Application
' Set wrkBook = appExcel.Workbooks.Open(CurrentProject.Path & "\ClientPropertyPdkDetails.xlsx")
' appExcel.Visible = True 'Make Excel Window Visible
''Make Batch Sheet the active Worksheet
' wrkBook.Worksheets("Client Property Pdk").Activate
' With wrkBook.ActiveSheet
' .Range("A2").Value = Me![Client_ID]
' .Range("B2").Value = Me![TradingName]
' .Range("C2").Value = Me![Property_ID]
' .Range("D2").Value = Me![Property]
' .Range("E2").Value = Me![ID]
' .Range("F2").Value = Me![PaddockName]
' .Range("G2").Value = Me![PaddockArea]
' .Range("H2").Value = Me![ArablePdkArea]
' .Range("I2").Value = Me![MonitoredPdk]
' .Range("J2").Value = Me![SoilSamplePdk]
' .Columns("A:J").AutoFit 'Autofit Columns A thru J to hold contents
' End With
''DoCmd.OutputTo acOutputQuery, "qryClientPropertyPaddockJoined", acFormatXLSX, "K:\Dropbox\1a Graminus Consulting\Graminus Database\ClientPropertyPdkDetails.xlsx", , , acExportQualityPrint
'End Sub

Hi All,
Thanks for your help and input much appreciated! I think I was in a rutt and trying to be too tricky (I think). I have since changed tact and created a Public Function (Below) that creates a temporary query and export that instead. It works a treat.
Thanks Again
Nath
Public Function CreateQueryDAO()
'Purpose: Create a query based on Clients Property Name to Export to Excel
Dim db As DAO.Database
Dim qdf As DAO.QueryDef
Set db = CurrentDb()
'The next line creates and automatically appends the QueryDef.
Set qdf = db.CreateQueryDef("qryPropertyDetails")
'Set the SQL property to a string representing a SQL statement.
qdf.sql = "SELECT tblExpXlsClientPropPdkDetails.* FROM tblExpXlsClientPropPdkDetails WHERE [Property_ID] =" & Forms![frmExportClientPropertyPaddockExl].txtPropertyID
'Do not append: QueryDef is automatically appended!
Debug.Print "qry[qryPropertyDetails] created."
'Start a new workbook in Excel
Dim oApp As New Excel.Application
Dim oBook As Excel.Workbook
Dim oSheet As Excel.Worksheet
Dim rs As DAO.Recordset
Set rs = db.OpenRecordset("qryPropertyDetails", dbOpenSnapshot)
Set oBook = oApp.Workbooks.Add
Set oSheet = oBook.Worksheets(1)
'Add the field names in row 1
Dim i As Integer
Dim iNumCols As Integer
iNumCols = rs.Fields.Count
For i = 1 To iNumCols
oSheet.Cells(1, i).Value = rs.Fields(i - 1).Name
Next
'Add the data starting at cell A2
oSheet.Range("A2").CopyFromRecordset rs
'Format the header row as bold and autofit the columns
With oSheet.Range("a1").Resize(1, iNumCols)
.Font.Bold = True
.EntireColumn.AutoFit
End With
oApp.Visible = True
oApp.UserControl = True
Debug.Print "Property Exported to Excel."
'Delete new Query.
db.QueryDefs.Delete "qryPropertyDetails"
Debug.Print "qry[qryPropertyDetails] Deleted."
'Close the Database and Recordset
rs.Close
db.Close
Set qdf = Nothing
Set db = Nothing
'Source: http://allenbrowne.com/func-dao.html#CreateQueryDAO
Private Sub btnCreateQry_Click()
CreateQueryDAO
End Sub
                                             

Similar Messages

  • Export more than  70000 rows to excel in OBIEE 10G

    Hi We are using
    Office 2003 and need to export more than 70000 rows from OBIEE to excel.Is there any way?

    Hi,
    Refer the below link.
    Re: Downloading / Exporting more than 65k records in Excel
    Thanks,
    Satya
    Edited by: Satya Ranki Reddy on Apr 18, 2013 2:41 PM

  • How to export only selected columns of WD ALV to excel

    Hi,
    I have WD ALV report with EXPORT button (since standard button was not working properly i just hide that and added custom one) & standard dropdown to choose layout. Out of 20 columns user may choose n number of columns, the same number of columns i need to transfer to xls. How to export only selected columns to xls. Any method or FM to filter number of columns being transfer to xls. please advise
    Rgds
    sudhanshu

    Hi,
    Where exactly we are (or going to be) using this reference i.e., CL_SALV_WD_CONFIG_TABLE. Im passing contents, filename & MIME type as:
    call function 'SCMS_STRING_TO_XSTRING'
        exporting
          TEXT   = TEXT
        importing
          BUFFER = XTEXT.
    WDR_TASK=>CLIENT_WINDOW->CLIENT->ATTACH_FILE_TO_RESPONSE(
    **path to the word file
        I_FILENAME = 'WDP.xls'
    String Variable
        I_CONTENT =  XTEXT
    File Type
        I_MIME_TYPE = 'EXCEL' ).
    In CL_SALV_WD_CONFIG_TABLE we have few methods related to column settings however not sure where exactly we will be using this class reference. can you please give some idea so that i can do some r&d in that.
    Rgds
    Sudhanshu

  • Exporting millions of records  into excel sheet

    i am using toad 9.5 version.i have a query that gives 5lacs records i want to export these data into excel sheet.i am saving the data into excel sheet using save grid content option.its taking long time.i want to export 5 lacs of records in fast phase how to do it.

    user10447332 wrote:
    i am using toad 9.5 version.i have a query that gives 5lacs records i want to export these data into excel sheet.i am saving the data into excel sheet using save grid content option.its taking long time.i want to export 5 lacs of records in fast phase how to do it.I don't have toad 9.5 to look at as I'm on toad 10.6, but I think it hasn't changed from that earlier version.
    When you bring up the "export data" window which let's you choose where and how the data should be exported, there should be an option for "Display all results in Grid". If you have this checked, then toad is trying to load all the results into the grid (i.e. into memory) at the same time as exporting them to the file, so this will really slow down the export and potentially cause toad to run out of memory. Ensure this is unchecked and then toad will just query the data from the database and write it straight to file without it filling up memory.

  • How to add a checkbox to dynamic itab  so that i can select some records

    How to add a checkbox to dynamic itab  so that i can select some records in the alv and can display them in another alv using a button
    I have requirement where i have to display the dynamic itab records in an alv ....Some records from this alv output has to be selected through checkbox  provided in the first column .( I will get to know the structure of the itab only at runtime ,so iam using dynamic itab)

    Hi,
       I tried and finally i got it , Just try for it.
    type-pools : slis.
    PARAMETERS : p_tab type dd02l-tabname.
    data : ref_tabletype  type REF TO cl_abap_tabledescr,
           ref_rowtype TYPE REF TO cl_abap_structdescr.
    field-symbols  : <lt_table>  type   standard TABLE ,
           <fwa> type any,
           <field> type abap_compdescr.
    data : lt_fcat type lvc_t_fcat,
           ls_fcat type lvc_s_fcat,
           lt_fldcat type SLIS_T_FIELDCAT_ALV,
           ls_fldcat like line of lt_fldcat.
    data : ref_data type REF TO data,
            ref_wa type ref to  data.
    ref_rowtype ?= cl_abap_typedescr=>DESCRIBE_BY_name( p_name = p_tab ).
    TRY.
    CALL METHOD cl_abap_tabledescr=>create
      EXPORTING
        p_line_type  = ref_rowtype
      receiving
        p_result     = ref_tabletype.
    CATCH cx_sy_table_creation .
    write : / 'Object Not Found'.
    ENDTRY.
    *creating object.
    create data ref_data type handle ref_tabletype.
    create data ref_wa type handle ref_rowtype.
    *value assignment.
    ASSIGN ref_data->* to <lt_table>.
    assign ref_wa->* to <fwa>.
    loop at ref_rowtype->components ASSIGNING <field>.
      ls_fcat-fieldname = <field>-name.
      ls_fcat-ref_table = p_tab.
      append ls_fcat to lt_fcat.
    if lt_fldcat[] is  INITIAL.
        ls_fldcat-fieldname = 'CHECKBOX'.
        ls_fldcat-checkbox = 'X'.
        ls_fldcat-edit = 'X'.
        ls_fldcat-seltext_m = 'Checkbox'.
        append ls_fldcat to lt_fldcat.
      endif.
      clear ls_fldcat.
      ls_fldcat-fieldname = <field>-name.
      ls_fldcat-ref_tabname = p_tab.
      append ls_fldcat to lt_fldcat.
    endloop.
    loop at lt_fldcat into ls_fldcat.
      if sy-tabix = 1.
        ls_fldcat-checkbox = 'X'.
        ls_fldcat-edit = 'X'.
    modify lt_fldcat FROM ls_fldcat
        TRANSPORTING checkbox edit.
    endif.
    endloop.
    CALL METHOD cl_alv_table_create=>create_dynamic_table
      EXPORTING
        it_fieldcatalog           = lt_fcat[]
      IMPORTING
        ep_table                  = ref_data.
    assign ref_data->* to <lt_table>.
    select * FROM (p_tab) into table <lt_table>.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
    EXPORTING
       IT_FIELDCAT                       = lt_fldcat[]
      TABLES
        t_outtab                          = <lt_table>.
    Thanks & Regards,
    Raghunadh .K

  • Error while exporting data from sql server to excel

    Hi,
    I am trying to export data from sql server to excel.
    The query that I used is s follows
    INSERT INTO OPENROWSET( 'Microsoft.Jet.OLEDB.4.0', 'Excel 8.0;Database=C:\Folder1\abc.xls','select * from [Sheet1$A1:IV65000]')
    select 
    column1,column2.... from Table1
    I get the following error message while doing so..
    String or binary data would be truncated.
    The statement has been terminated.
    One of the column's holds data more than 225 characters.
    What is the way to correct this, i want the whole data of the colum in the excel sheet.

    I haven't had great luck with the INSERT INTO OPENROWSET method.  Can you try one of the many samples from one of these 3 links?
    http://www.excel-sql-server.com/excel-sql-server-import-export-using-vba.htm#Excel%20Data%20Export%20to%20SQL%20Server%20Test%20Code 
    http://www.mssqltips.com/sqlservertip/1540/insert-update-or-delete-data-in-sql-server-from-excel/
    https://www.simple-talk.com/sql/database-administration/getting-data-between-excel-and-sql-server-using-odbc--/
    Knowledge is the only thing that I can give you, and still retain, and we are both better off for it.

  • BI Report Export Problem - Selection data missing

    Hi all,
    I´m pretty new to Web reports and now I have a problem which might be easy to solve for you experts.
    The problem appears when exporting a report. If the user exports the report to PDF or Excel, the data is exported correctly but the selection settings, that the user set, are missing. Only the field name are shown, but not the selected item. Its somewhat of a cosmetical problem, but important to the users.
    Interestingly enough, we use many other templates which have the exact same functionality and where it works correctly.
    I compared the XML on code on those templates, but there is no major difference.
    Here is the important code (at least in my understanding) of the template:
    <bi:param name="BUTTON_LIST" type="ORDEREDLIST">
                                      <bi:param name="BUTTON" type="COMPOSITE" index="1">
                                        <bi:param name="CAPTION" value="PDF">
                                        </bi:param>
                                        <bi:param name="ACTION" type="CHOICE" value="INSTRUCTION">
                                          <bi:param name="INSTRUCTION">
                                            <bi:command type="EXPORT">
                                              <bi:param name="ITEM_REF_LIST" type="UNORDEREDLIST">
                                                <bi:param name="ITEM_REF" index="1" value="TEXT_ITEM_9">
                                                </bi:param>
                                                <bi:param name="ITEM_REF" index="2" value="INFO_FIELD_ITEM_2">
                                                </bi:param>
                                                <bi:param name="ITEM_REF" index="3" value="ANALYSIS_ITEM_1">
                                                </bi:param>
                                              </bi:param>
                                              <bi:param name="FOOTER_LEFT" value="DATE">
                                              </bi:param>
                                              <bi:param name="FOOTER_RIGHT" value="PAGEOFPAGES">
                                              </bi:param>
                                            </bi:command>
                                          </bi:param>
                                        </bi:param>
                                      </bi:param>
    <bi:item name="INFO_FIELD_ITEM_2" designheight="50" designwidth="300" type="INFO_FIELD_ITEM">
                              <bi:param name="DATA_PROVIDER_REF" value="DP_1">
                              </bi:param>
                              <bi:param name="INFORMATION_ELEMENT_LIST" type="ORDEREDLIST">
                                <bi:param name="INFORMATION_TYPE" type="CHOICE" index="1" value="VARIABLE">
                                  <bi:param name="VARIABLE" value="IP_VERS_CM01" text="Plan Version">
                                  </bi:param>
                                </bi:param>
                                <bi:param name="INFORMATION_TYPE" type="CHOICE" index="2" value="CHARACTERISTIC_LIST">
                                  <bi:param name="CHARACTERISTIC_LIST" type="ORDEREDLIST">
                                    <bi:param name="CHARACTERISTIC" index="1" value="0G_CWW010" text="ProdGr">
                                    </bi:param>
                                    <bi:param name="CHARACTERISTIC" index="2" value="0MATERIAL" text="Material">
                                    </bi:param>
                                    <bi:param name="CHARACTERISTIC" index="3" value="0PROFIT_CTR" text="Planning Unit">
                                    </bi:param>
                                    <bi:param name="CHARACTERISTIC" index="4" value="469EIDJHD8W7F786UEL29ZJVV" text="Country Statement">
                                    </bi:param>
                                    <bi:param name="CHARACTERISTIC" index="5" value="ZXCO_NAV3__ZXCO_BUSN" text="BusSeg Nav">
                                    </bi:param>
                                  </bi:param>
                                </bi:param>
                              </bi:param>
                            </bi:item>
    Any input and hints are appreciated.
    Regards,
    Harald

    Hello Harald,
    As per my understanding, the particular characterisitc is not assigned and that could be the reason for displaying only field name. Please lookinto it.
    all the best,
    Kind regards,
    Praveen

  • [Forum FAQ] How do I export each group data to separated Excel files in Reporting Services?

    Introduction
    There is a scenario that a report grouped by one field for some reasons, then the users want to export each group data to separated Excel files. By default, we can directly export only one file at a time on report server. Is there a way that we can split
    the report based on the group, then export each report to Excel file?
    Solution
    To achieve this requirement, we can add a parameter with the group values to filter the report based on the group, then create a data-driven subscription for the report which get File name and parameter from the group values.
    In the report, create a parameter named Name which use the Name field as Available Values (supposing the group grouped on Name field).
    Add a filter as below in the corresponding tablix:
    Expression: [Name]
    Operator: =
    Value: [@Name]
    Deploy the report. Then create a data-driven subscription with Windows File Share delivery extension for the report in Report Manager.
    During the data-driven subscription, in the step 3, specify a query that returns the Name field with the values as the group in the report.
    In the step 4 (Specify delivery extension settings for Report Server FileShare), below “File name”option, select “Get the value from the database”, then select Name field.
    Below ‘Render Format’ option, select Excel as the static value.
    In the step 5, we can configure parameter Name “Get the value from the database”, then select Name field. 
    Then specify the subscription execute only one time.
    References:
    Create a Data-Driven Subscription
    Windows File Share Delivery in Reporting Services
    Applies to
    Reporting Services 2005
    Reporting Services 2008
    Reporting Services 2008 R2
    Reporting Services 2012
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Thanks,
    Is this a supported scenario, or does it use unsupported features?
    For example, can we call exec [ReportServer].dbo.AddEvent @EventType='TimedSubscription', @EventData='b64ce7ec-d598-45cd-bbc2-ea202e0c129d'
    in a supported way?
    Thanks! Josh

  • How to supress empty records in excel

    Hi,
    I am using Oracle reports 10.1.2.0.2. The problem is with the excel output of the report. I am using DESFORMAT=SPREADSHEET to run the reorpt using rwservlet. In the excel output I am seeing blank records at places where I used format trigger in the report to hide it based on a condition. I would like to know if there is a way to supress those records in excel. There is not problem with the pdf output, in this format the blanks are supressed by default and output looks fine.
    Any suggestions would be greatly appreciated.
    Thanks

    No, I can not do that because they are all parameter based. depending on the parameter user selects different headings will be displayed on the report. All the deaders are from different columns of the table. I am using lexical parameters for this.
    Thanks

  • Exporting data in tables to an Excel spreadsheet?

    Is there a script or another way to export or save a documents tables (multiple tables over several pages) to an excel spreadsheet? I have found a solution which involves exporting each spread as a html file which i can then open straight in excel but this is still quite long winded and i can only seem to do this a spread at a time. As the job I am working on involves many pages this is taking too long. Surely there must be a script which can automate this in some way. I am fairly new to scripting so any help will be grateful. I have searched in scripting but nothing has really come close to what i am trying to achieve. Indesign CS5.5 user.

    Thanks for the quick response. I thought it was an applescript because of the word "applescript" within it. Now I'm running it as a jsx. However in my real document with nothing selected, it selects only one table on page 3 to export. I created a new test document with three tables in separate text boxes on one page, and the script only exports the first one. I put the three tables in one big text box (one story), and still it only exports the first one. I tried selecting the second table in the story and ran the script again, but it still just exported the first table.
    What I am hoping for is a script that will export every table to a single excel spreadsheet. Here is an example of the dummy tables with the legend in the first column and the data in the second column. I don't mind if the script exports the legend every time; I can repmove those columns in the excel file.
    1
    a
    2
    b
    3
    c
    4
    d
    5
    e
    6
    f
    7
    g
    8
    h
    1
    i
    2
    j
    3
    k
    4
    l
    5
    m
    6
    n
    7
    o
    8
    p
    1
    q
    2
    r
    3
    s
    4
    t
    5
    u
    6
    v
    7
    w
    8
    x

  • Exporting Data Quality Statistics Into An Excel File Or Database

    Hi,
               I would like to ask if it is possible to export the data profiling statistics into an excel file / flat file or a database table.
               The output required by our development team is that we would like to be able to manipulate and review the data profiling outside of the Data Quality Services User Interface.
              I'm aware that after the cleansing of a specific set of data is that you can save/export the output results into an excel file or database, however the feature I'm looking for is for the data profiling statistics itself.
     Mostly information on the knowledge base.  Specifically, how many new records this specific column has and how many unique data and invalid data this column has and etc.
              The reason for this is that so we can control and track the data profiling information and be a bit more flexible in creating reports and presenting the data.  Using the DQS user interface would not suit our needs
    for the project.   
               Sorry if this has been asked before but i've tried searching around and couldn't find any information regarding this functionality.
    Thanks!

    I'm not too sure where they are stored, but you could use the directories shown in transaction AL11 so find them.

  • Displaying the selected multiple records from node using onleadselect event

    Hi all,
    How to display the selected multiple records from node to node using onleadselect event.
    i came to know tht to fulfill this requirement i need to use the method get_selected_elements,
    how to use this method in my event??
    sree

    Hi Sree,
    Try below code..
    DATA : lo_nd_it_lips TYPE REF TO if_wd_context_node,             // This is first node
                 lo_el_it_lips TYPE REF TO if_wd_context_element,
                 ls_it_lips TYPE wd_this->Element_it_lips,
                 lt_it_lips TYPE wd_this->Elements_it_lips.
               DATA: wa_temp TYPE REF TO if_wd_context_element,
                lt_temp TYPE wdr_context_element_set.
    * navigate from <CONTEXT> to <IT_LIPS> via lead selection
          lo_nd_it_lips = wd_context->path_get_node( path = `ZRETURN_DEL_CHANGE.CHANGING_3.IT_LIPS` ).
          CALL METHOD lo_nd_it_lips->get_selected_elements
            EXPORTING
                INCLUDING_LEAD_SELECTION = ABAP_true
            RECEIVING
              set = lt_temp.
          DATA lo_nd_pack_mat TYPE REF TO if_wd_context_node.          //Second Node
          DATA lo_el_pack_mat TYPE REF TO if_wd_context_element.
          DATA ls_pack_mat TYPE wd_this->Element_pack_mat.
          DATA lt_pack_mat TYPE wd_this->Elements_pack_mat.
    * navigate from <CONTEXT> to <PACK_MAT> via lead selection
          lo_nd_pack_mat = wd_context->get_child_node( name = wd_this->wdctx_pack_mat ).
          lo_nd_pack_mat->get_static_attributes_table( importing table = lt_pack_mat ).
          LOOP AT lt_temp INTO wa_temp.
            CALL METHOD wa_temp->get_static_attributes
              IMPORTING
                static_attributes = ls_it_lips.
                  ls_pack_mat-vbeln = ls_it_lips-vbeln.
                  ls_pack_mat-material = ls_it_lips-matnr.
                  ls_pack_mat-vgbel = ls_it_lips-vgbel.
                    append ls_it_lips to lt_unpack.
                  CLEAR ls_pack_mat.
           ENDLOOP.
    Cheers,
    Kris.

  • Export large ASCP plan data to excel

    Hi,
    We have a need to export plan results from ASCP Plan to excel. Export option takes too long. I would like to know if there is an alternate method in Oracle EBS R12.1 ASCP to get the results of Plan in excel or similar format.
    Thanks,
    Ash

    If you are exporting a substantial number of records to excel the best option id to use CSV format and then process the generated CSV file with excel.
    Exporting directly to excel format works well with small amounts of data, but with a large number of records system memory becomes an issue.
    If you feel the need to export directly into excel format you can try to increase the maximum memory allocated to SQLDeveloper by adding something like the following
    AddVMOption -Xmx1024Mto the sqldeveloper.conf file usually located in
    [SQLDEveloper_install_dir]\sqldeveloper\binadjust the number as you see fit, but bear in mind that there have been issues reported while meddling with this parameter.
    The default value for the parameter is stored in the ide.conf file usually located in
    [SQLDEveloper_install_dir]\ide\bin

  • Want to export columns (in a pdf) to excel.  Can't find Adobe doco on it.  Anyone know how to do thi

    Want to export columns (from a pdf) to excel.  Can't find Adobe doco on it.  Anyone know how to do this?

    Hold the alt key as you select a block of text. There is also a column select option if the table has tabs that mark it as such. With a table, a table icon should show up as you pass over the table if it is properly marked as a table. Without the tabs, you might get strange results with the column select. The information on copying text is in the manual (in my AA8 it is under "Select and copy text").

  • Export PDP of (Project Fields) to excel

    Hi ,
    How do I export PDP of (Project Fields) to excel.
    I am using project server 2013.
    Thanks,
    Rohit

    Hi Rohit,
    Indeed we'd need to have more information. Do you want to export the list of the custom fields on a PDP? With ou without the values? Or do you want to have the list of values of a PDP's custom fields?
    Is it a "one-shot" need which could be addressed manually or it is a recurring need that requires a report?
    Just selecting the fields in the PDP in read-only mode and doing a copy-paste in Excel will give you the custom fields with the values selected in the PDP.
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

Maybe you are looking for

  • In Design App Download Is Not Working

    I am trying to download the In Design App but it is not working. Is there something wrong with it. Kind Regards, Heath

  • Table Of Contents - Level Formatting

    InDesign CS3 Ive created a long document that catalogs all of my company's graphic options for our motorcycles. Each page contains 2 graphics along with their respective part number and graphic name. The part number and graphic name for each graphic

  • Nokia 2330 memory

    Hi. I bought a nokia 2330 classic and I was told it had a 32 Mb internal memory (on each technical specification pages about this phone this is also noted). Now, when I search inside the phone, I can't find that much memory, just about 11 Mb... I upl

  • How to add audiotracks so they can be selected by the viewer?

    I am using iMovies 11. Its really easy to use but i still got a question about audio. My goal is, to allow viewers to switch between the original recorded audio, a music track and if they want, a overlay of both. If i got it right, there must be thre

  • Device error: 49.38.OC

    My mfp laserjet printer m4555 is giving device error: 49.38 How do i fix this problem. we are using windows 7 operating system 64 bits. Rgds