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 SkipVought 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: *

  1. terzaghi

    Chart Y Axis Automatic scaling

    I need to set with a formula (so it changes every time i change values without manula handling) the maximun and minimum scaliing of the Y axis of a bar graph. Does anyone know how to accomplish that? If I try to insert a formula Excel says that an integer is required Thanks! Andrea
  2. terzaghi

    Write a file with only CHR 10 and not CHR 13

    Hi, I'm searching a method to write a text file that insert at the end of each line a Chr(10) (web standard) and not a (Chr(13) + Chr(10)) like "Print #" does. I guess I have to write a binary file so I can insert whatever character I want. Can anyone tell me what are the commands to do so? I...
  3. terzaghi

    Insert in Outlook email an Image that is shown in the mail

    Hi, I use this code: ____________________________________ Sub SendEmailHTML() Dim olApp As Outlook.Application Dim olMail As MailItem Set olApp = New Outlook.Application Set olMail = olApp.CreateItem(olMailItem) With olMail .to = "aaa@bbb.com" .Subject =...
  4. terzaghi

    Execute WMP from Excel

    Combo, I think you made your form and code with Win2000, correct? with win2000 it works fine as I already said, but I tried also with WinXp and the result is that "Me.MediaPlayer1" is not understood by the compiler, insted you have to write "Me.WindowsMediaPlayer1" and the method .Open does...
  5. terzaghi

    Execute WMP from Excel

    Thanks a lot! It works very fine. I have only a Problem... How can I detect the end of the movie so I can close the form by utself without a click? I didn't find any method in MediaPlayer activeX. maybe it's because I'm tired...
  6. terzaghi

    Execute WMP from Excel

    Hello, is it possible to control Windows Media Player from Excel such as I can execute videos or sounds (voice recording) when a certain condition is obtained? Obviously I check the condition with a macro... I need to open WMP, execute a certain media file and then close it when finished. I'm...
  7. terzaghi

    Fraction only using Integer Numbers

    Ok done. Format cell "??/??" (never used this format!!) Bye
  8. terzaghi

    Fraction only using Integer Numbers

    Hi, I need to whow numbers in excel cells in this format: Number 3,5 ---> See in Cell: "7/2" number 2,2 ---> See in cell: "11/2" i.e. I need to see a fraction done with integer numbers (i.e. the the fraction with the smalles integer numbers that rapresents that decimal number) does anyone...
  9. terzaghi

    embed image as background in Outlook

    Hi, im'trying to automate the sending of email from excel using Outlook. I use this macro: ----------------- ' requires a reference to the Microsoft Outlook 8.0 Object Library Sub SendAnEmailWithOutlook() ' creates and sends a new e-mail message with Outlook Dim OLF As Outlook.MAPIFolder...
  10. terzaghi

    Call a function from a cell in Excel?

    If you want to use it in another workbook you have either do copy the module in every workbook where you want to use it or to save it in an .xla module and load in at the starup of Excel.
  11. terzaghi

    Change title of a graph in excel

    Skip! It works thaks a lot!
  12. terzaghi

    Change title of a graph in excel

    I tryed that but with Microsoft Excel 2000 ver. 9.0.2812 it doesn't work.. which version do you have? Thanks a lot!
  13. terzaghi

    Change title of a graph in excel

    Hi. I need to change every month the title of a 25 different graph. Totday the title of the graph is "October" I have to change all the titles in "November" a simple code is: Sub Macro1() ActiveSheet.ChartObjects("Chart 1").Activate ActiveChart.ChartTitle.Select...
  14. terzaghi

    Erlang C formula?

    Yes I know the formula. as you cans see it says A^N/N! where A is the erlangs and N is the number of servers. in our problem erlang is a number like 100 and N is a number like 120 so I have to evaluate a number like 100^120/120! (120! is 120*119*118*....*5*4*3*2*1) so the problem is that exel...
  15. terzaghi

    Erlang C formula?

    Hi, does anyone has a roubust algorithm to calculate the erlang c formula? I found on the Internet a good algorithm for Erlang B formula. The Problem is that, in order to evaluate the result, it is necessary, in practical situation, to calculate numbers such as 200^100 and 200! thanks to...
  16. terzaghi

    Macro toolbar to insert graphics in Word

    Or... make the graph in excel, then "Copy" to clipboard. In word you do: paste special -> Paste Link -> Microsoft Excel Chart Object whenever you change the data in excel with excel and word open you'll have the graph in excel (and his copy in word) updated. hope this will help. A
  17. terzaghi

    Macro toolbar to insert graphics in Word

    You can use microsoft graph editor in work linking data from excel.. here you find a piece of the Word Help: ---------------------- Link to data in another program to create a chart Microsoft Graph will update the chart when the data in the source program changes. In the source program and...
  18. terzaghi

    n00bie question

    The only thing to know in VBA is how you can refer data from the progra: use the statment worksheet("NAME").cells(row,column).value i.e worksheet("Sheet1").cells(1,1).value is cell A1. you can a=worksheet("Sheet1").cells(1,1).value to gather a data and...
  19. terzaghi

    Excel: Number stored as text

    Simple way: do this: 1. export data (now column A1 contains the numbers in text format) 2. in B column =value(A1) etc. now column B contains numbers 3. paste special format and value from B to A. You converted text in A and you can delete column B. hope this helps.
  20. terzaghi

    Problem with Date ...

    Hi skip, sorry but I guess I missed something as I don't understand. I try so summarize: if I'm free to write in a cell a date, excel will interpret it in accordance of its regional settings. That's to say: I open excel with regional settings that say dd/mm/yyyy and I write 1/2/04 and the...

Part and Inventory Search

Back
Top