Search results

  1. Smart

    Link between Access and Excel

    You can link to your excel file File ,getexternal data, link tables select the excel file This now appears as a link table in your database and you can query it as you would any access table
  2. Smart

    Text Field Character Limit in Reports

    RE:xt Field Character Limit in Reports In the memo fields properties (on the report) format and set can grow to yes
  3. Smart

    Please help

    In your reports design select a field then from the menu bar select format ,conditional format This may give you a pointer
  4. Smart

    VB help needed!!!!!

    RE:RE:VB help needed!!!!! This works for me transfers the contents of a table to an excel spreadsheet DoCmd.TransferSpreadsheet acExport, 8, "Your table", "c:\aaatest.xls", True, ""
  5. Smart

    Parameter Qry result name displayed in report

    In your query that the report is based on add a new column; Reptitle:[Please Enter Your Report Title] In the header of the report create a text box, in its properties ,data section set control source to Reptitle
  6. Smart

    Subform open in form view??

    Check the subforms properties format, default view and change from datasheet to either single form or continuous forms
  7. Smart

    Grouping Data

    create a query and select the Id and surname click on the totals icon on the toolbar (sideways'M') This will group all the ids' and surnames
  8. Smart

    VB help needed!!!!!

    Have you tried using transfer database DoCmd.TransferDatabase acExport, "Microsoft Access", "\\spfp02\complaints\MI\KIP_Reporting\KPI.mdb", acTable, "Qry_Extract_For_Productivity", "Oteloproductivity", False the above code will transfer from the current database the contents of the...
  9. Smart

    Pause for 3 seconds....

    In the on timer event of the picture form Open your main form close your picture form In the timer interval event type 2000 if the picture form doesn't display for long enough just increas ethe timer interval
  10. Smart

    datasheet backcolor

    Not sure whether you can change the colour of the background, but you can change the colour of the cells and lines whilst in data sheet view right click on the datasheet and choose datasheet from the list
  11. Smart

    Print preview without saving record

    Instead of having the reports data source as a table or query you can base each field in the report on each field on the form In the report fields data source type =forms![yourform]![fieldname] do this for each field on the report
  12. Smart

    opening a blank form

    On the form properties data tab set data entry to yes
  13. Smart

    command button print

    REcommand button print In the on open event type Dim nodata as string nodata = nz(dlookup("[Columname]"."[Query reportis based on]"),"") If nodata = "" then Buttonname.visible=false end if
  14. Smart

    Newbie needs help writing Event Procedure

    When you create your button to run the reportthe following code is generated for you Dim stDocName As String stDocName = "YourReportname" DoCmd.OpenReport stDocName, acPreview
  15. Smart

    How do I show a currency in a query.

    Design the table and in the required columns data type to currency or In the field section of the query right click properties and set format to currency. or do the same in the report
  16. Smart

    Newbie needs help writing Event Procedure

    You have a form that contains your report paramaters create a button using the wizard to run your main report Add all your sub reports to the main report open the form fill in your parameters and click the button your main report will open and so will the sub reports (if they have any data in...
  17. Smart

    Report data + title Help - newbie

    In your query that the report is based on add a new column; Reptitle:[Please Enter Your Report Title] In the header of the report create a text box, in its properties ,data section set control source to Reptitle
  18. Smart

    True or False Query Issue

    I have attached your database The problem was wirh your query You have to supply <> True on each criteria line
  19. Smart

    Select Query

    In your query select agent1 ad a new column Agenttot:agent1 click the Totals Icon on the toolbar In the total section of the column Agenttot change group by to count
  20. Smart

    variable file name with transfertext

    Have a look at the attached database previously posted by GHudson
Back
Top Bottom