Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: dunner44
  • Order by date
  1. dunner44

    Excel macro

    excellent, thank you
  2. dunner44

    Excel macro

    xlbo, sorry for the confusion. Here is the code I tried... Sub Button1_Click() Workbooks.Open "C:\My Documents\Projects\" End Sub Here is where I get stuck. Does anyone have any solutions? Thank you.
  3. dunner44

    Excel macro

    I want it to open up the dialogue box so I can select the file
  4. dunner44

    Excel macro

    I have a command button in Excel. When I click on the button, I want it to do the same command as if I were to click on >File >Open. And I want it to automatically go to a specific folder, C:\My Documents\Projects. Does anyone have the code for this? TIA
  5. dunner44

    Bar and Line chart type in Excel 2000

    I have 4 series of data in a bar chart. If I change the chart type to a bar/line chart, it changes the last two series to line format, and the top two series to bar format. I want the top 3 series to be a bar, and the last series to be a line. Is there an easy way to make a line formatted...
  6. dunner44

    Email an excel file from Access

    I am using Microsoft Office 2000. In an Access form, I want to email an Excel file. Here is the code I used... DoCmd.SendObject acSendNoObject, "U:\Filepath\EcxelSheet.xls", , , , , "email subject" When it runs, a new Outlook email message pops up, but no object is attached. That is because...
  7. dunner44

    Email an excel file from Access

    I am using Microsoft Office 2000. In an Access form, I wan to email an Excel file. Here is the code I used... DoCmd.SendObject acSendNoObject, "U:\Filepath\EcxelSheet.xls", , , , , "email subject" When it runs, a new Outlook email message pops up, but no object is attached. That is because...
  8. dunner44

    Windows 2000 view settings

    There is only 1 option under Tools in Windows Explorer, and that is Synchronize. Any other way to accomplish this?
  9. dunner44

    Windows 2000 view settings

    Is there an option in Windows 2000 that will set the default view of all the windows to Details? TIA
  10. dunner44

    Marquee in Access Form

    I ultimately want to have a scrolling marquee in an Access Form (by using an unbound textbox). I created a Page with the marquee. How can I transfer that marquee to the form? Do I insert the Page, or is there a setting I can place on the textbox to make it scroll. (I am using Access 2000) TIA
  11. dunner44

    Excel '97 reading a Date field

    If I have 20/2/04 in a cell, and I want Excel to read it as Feb. 2, 2004. Is there a formula or setting for that? TIA
  12. dunner44

    Search formula in Excel

    I am trying to write a formula in Excel that includes the 'search' function and the 'or' function, but I keep getting an error. Here is what I wrote... =IF(ISERROR(SEARCH(or(G3="contact", G3="contacting"))) = FALSE, 1, 0) Any suggestions? TIA
  13. dunner44

    Formating a textbox in an Access '97 report

    In a report, what is the formula for a conditional format. Say if my textbox value is greater than 100, how can I format the font color to be red? Unfortunatley Access 97 doesn't have conditional formatting. TIA
  14. dunner44

    An If Then statement in an Access Query

    I tried that, and it pulled back no records. Here is what I have as my code... IIf([Forms]![frm_reports]![Text72]="View All","",[Forms]![frm_reports]![Text72]) Am I missing something?
  15. dunner44

    An If Then statement in an Access Query

    My criteria in my query reads... [Forms]![frm_reports]![Text72] Text72 is a combobox on a form, and within the list of options in the combobox is a "Veiw All" option. How would I rewrite my criteria to say, " If Text72 = 'View All' Then the criteria field should be blank to pull back all...
  16. dunner44

    Format Function in Access Report

    In my report I want to set up a formula for a field so that if the value is greater than 1, then the font is red. I need help setting up the formula. Any suggestions? Thank you!
  17. dunner44

    Refresh a graph on a from

    Thank you all. I was successful with DoCmd.RunCommand acCmdSaveRecord.
  18. dunner44

    Refresh a graph on a from

    Do you mean have do I have the code DoCmd.Save, or is there another code?
  19. dunner44

    Refresh a graph on a from

    How do I make a graph refresh after an field is updated. I tried in the Textbox AfterUpdate event to requery the graph, but that didnt work. Any suggestions? Thanks
  20. dunner44

    Showing an object in a report

    FIELD is a Textbox

Part and Inventory Search

Back
Top