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 strongm 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: rss01
  • Order by date
  1. rss01

    Run-time error '1004'

    Yes it is opening an existing workbook. The web query doesnt exist in the workbook, I pass it from access. We use this to download pricing from a website for a market. Each market has roughly 300 unique url's that get priced. So instaed of having 300 existing workbooks, the webquery url is...
  2. rss01

    Run-time error '1004'

    hi, I have access code that performs opens excel and runs web queries. Not all the time but randomly I will get this error. Run-time error '1004'; Unable to open http://www.xxxxxxxxxxxxxx The connection to this Internet site took longer than the alloted time. Set dbase = CurrentDb Set objXL...
  3. rss01

    copy and paste data in Excel (need to be text not number)

    Doug, One thing to keep in mind about Excel. Even though you change an entire column to the text format, if the cell already has data in it, it will need to activated before it changes to text. Go into a cell that has numbers and hit the F2 key then ENTER to leave the cell, you should see the...
  4. rss01

    Subtotals to not include Zero's or Null Values

    Could you change your formula to not include zeros =IF(SUM(B3-A3)=0,"",SUM(B3-A3)) Randy
  5. rss01

    How to put data in the body of an email using VBA in Outlook

    This is what I use. Public Sub HTML_Email() Dim olApp As Outlook.Application Dim olMail As Outlook.MailItem Dim FSObj As Scripting.FileSystemObject Dim TStream As Scripting.TextStream Dim rngeSend As Range Dim strHTMLBody As String 'Select the range to be sent Set rngeSend =...
  6. rss01

    Pop Up Reminder programs

    You could just setup a reoccurring appointment in Outlook and it will popup on the screen.
  7. rss01

    Outlook Email Current Date

    Thank you, worked like a charm.
  8. rss01

    Outlook Email Current Date

    I have some code that will save the excel attachments from messages in a certain folder to a folder on the network. I need some help in modifying this code only to look at emails with Todays date. The email folder has the same message in it mutiply times. I get a new excel sheet everyday with...
  9. rss01

    Lookup Data

    Thanks Zathras, that worked like a charm.
  10. rss01

    Lookup Data

    Hi, I have a excel sheet that has 2 columns. column A is a part number and column B has a string of text. there can be numerous entries in column A of one value. Column A Column B 1 1111111 1 2222222 1 3333333 1 4444444 2 1111111 2...
  11. rss01

    Tab Form w/ subforms

    Need some help getting thru my brainlock. I have a form with 2 combo boxes and a tab form with 2 tabs. The combo boxes are used as criteria for 2 unbound subforms. My question is how do I insert the subforms, one on each tab. When I use the subform tool, it acts like I'm putting these on top of...
  12. rss01

    Why does excel display the formula in the cell and not the value?

    Once you reset your field to GENERAL, click behind your formula than exit the field and it should change it.
  13. rss01

    Outlook Opening System32 Folder

    What doesnt make any sense is on each users computer it a attachment that has a specific name. One comes from the A/S 400 as a .csv attachment. (we fixed this one by renaming the .csv file) One comes from a user as a .xls attachment. the receiving user can open other .xls attachments from the...
  14. rss01

    Outlook Opening System32 Folder

    Just bumping this up. has anybody else experienced this. We have 2 different users with the same problem. One opening and .xls document and one with a .csv document
  15. rss01

    Outlook Opening System32 Folder

    On a Win2K system, Office 2K When opening email attachment xxx.csv, the file opens correctly with Excel When opening email attachment xxx1.csv, the file opens a System32 folder and does not open excel. These csv files are from our own system. The same file name is emailed twice a day. We...
  16. rss01

    Outlook opening System32 folder

    On a Win2K system, Office 2K When opening attachment xxx.csv, the file opens correctly with Excel When opening attachment xxx1.csv, the file opens a System32 folder and does not open excel. Any ideas of what could be causing this, and how could I fix it.
  17. rss01

    Excel: Trouble removing single quote before text

    Skip, I'll give you a star for that. I was always saving the data as a text file, then resaving it back to excel. Thanks
  18. rss01

    Help... Need to find locationof Outlook files

    In Outlook 2000, I would do a search for anything with *.pst extension. It will give you the location of the files.
  19. rss01

    Strange CSV save

    This is what I use. objWKB.SaveAs Filename:="\\QS1047122\TO400\ZERO.csv", FileFormat:=xlCSVMSDOS, CreateBackup:=False
  20. rss01

    Why does excel display the formula in the cell and not the value?

    bsagal, It sounds like the format of the cell was TEXT. But just changing the format does not actually change the cell unless you activate the data. Next time try changing the cell format then click at the end of the data in the cell and press the ENTER key. I have this same issue all the time...

Part and Inventory Search

Back
Top