Search results

  1. D

    Retrieving columns with data

    I have a spreadsheet that has 133 columns that represent categories. On the row side I have about 1700 project numbers. Each project will use up to 14 of the 133 columns. The columns that are used with a project will have a cell labeled with a number 1. Example below: Project No. Column...
  2. D

    Converting csv number to date

    I am working on a query which is based on a table which was populated by a comma deliminted file. One of the fields is a 6 digit number(calculated date field) which I need to convert to a six digit date. Is there a function which will convert that number to a date. I have tried various...
  3. D

    Changing autonumbers

    I am having a problem trying to set the autonumber in a table back to 0. I worked through the help info and was able to do this on my laptop(Win 98). I did this by creating a temporary table with one record with one long integer field with a default value of 0. I would append this record to...
  4. D

    Me.Filter property syntax for reports

    I have been trying to filter a report by setting the value using the following code in the "Open" event on a report(based on a crosstab) Private Sub Report_Open(Cancel As Integer) 'Dim RegionString As String 'RegionString=InputBox("Please enter region code") Me.Filter = "RegionCode='wf' "...
  5. D

    Filter sub totals on reports

    I have a report that prints out both detail and summary. I want to eliminate the groups that sub total to 0. I have tried placing an expression in the group footer(txtSubTotal]<>0, but it still picks up those groups. Is there a better way to do this. It would eliminate a lot of wasted paper...
  6. D

    Running excel macro after exporting data into Excel

    I am using an Acess macro to send data from Access to an Excel Spreadsheet. This creates the worksheet with the data. I will then run an Excel macro while the spreadsheet is open to format the spreadsheet. What I want to do is have the Excel macro run automatically after the spreadsheet is...
  7. D

    Converting numbers to text

    I am working on revising our check format. I want to find out if there is a way to convert a numeric like 60 to "sixty". Thanks for any help. Dick White
  8. D

    Any takers on keeping sub reports visible!!

    Does anyone know the coding and where to place it on a main report to keep sub reports visible when there is no data?
  9. D

    Keeping sub reports visible with no data

    I want to keep sub reports visible on the main report when there is no data behind it. I have tried using the HasData property in the print event of the detail section of the main report. I can get it to respond to message boxes, but still can't make the sub report visible. Thanks for any help!
Back
Top Bottom