• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Recent content by JP

  1. J

    How to zip excel files using VBA?

    Here is the code I use: http://www.rondebruin.nl/windowsxpzip.htm
  2. J

    Giving Link To Outlook Mail with The Excel

    Instead of asking for the entire code, please let us know what you've already tried and specifically what you need help with. "Please write the code for me" isn't going to inspire many people to try and help. You've left out important details that would allow anyone to even begin to assist...
  3. J

    Opening a Userform within a Userform?

    What is your actual goal and why does it require this workflow?
  4. J

    Tab on over!

    You could create a data entry area by locking and hiding all cells, then unlocking and unhiding the cells you want to allow editing in, then protecting the worksheet. I have a VBA based approach here...
  5. J

    Hiding Application Title Bar?

    A quick Google search produced numerous links with the code you need: http://www.mrexcel.com/forum/showthread.php?t=6148 http://social.msdn.microsoft.com/Forums/en-US/isvvba/thread/736155c6-1e55-415c-add0-8d95d3e29212/ http://www.eileenslounge.com/viewtopic.php?f=27&t=1986
  6. J

    For Excel Ninjas Only --Plus anyone else who is REALLY up for a challenge... :)

    I like the Solver solution. Thought about that but went with formulas instead.
  7. J

    For Excel Ninjas Only --Plus anyone else who is REALLY up for a challenge... :)

    A1:A5 contains your values: 23, 46, 67, 12, 56 This formula calculates how much you need to add to each value to reach 250: =(250-SUM(A1:A5))/COUNTA(A1:A5) Add this to each cell's value to get the new value, i.e. in cell B1 put "=A1+((250-SUM(A1:A5))/COUNTA(A1:A5))" Does that work for you?
  8. J

    True or False, Is It Possible To Convert An Excel Module To A Stand Alone App?

    You could use VB6 to create an ActiveX DLL. The VBA code would translate almost exactly to VB6 code.
  9. J

    dynamic data transer from access query to excel

    You can create a PivotTable in Excel based on an external data source, including an Access query. See http://office.microsoft.com/en-us/excel-help/about-pivottable-and-pivotchart-source-data-HP005199304.aspx However it may not work since your query requires user intervention. In my...
  10. J

    progress thermometer chart

    Does this help? http://spreadsheetpage.com/index.php/tip/creating_a_thermometer_style_chart/
  11. J

    Outlook VBA help

    What I would do is set up a recurring task with something like "Mail from xyz@go.com not received" in the subject. Have it occur at 5:30 PM every weekday. Then I would add an event handler (VBA) to check each incoming email. If the email address is xyz@go.com, then look for the task and mark it...
  12. J

    Can this work in a Macro

    It has to be a backtick, i.e. grave character, which is usually found next to the number 1 on most keyboards (above the letter keys).
  13. J

    Fetch MS-Acces Data by Excel VBA

    There's some sample code here that shows you how to run a query against an Access MDB and return the result into an array in Excel: http://www.ozgrid.com/forum/showthread.php?t=18289&page=1
  14. J

    Application.ontime.

    How about this: Function Speak(c As Boolean, s As String, t As Long) Dim currenttime As Date currenttime = Now If c Then Do Until currenttime + TimeValue("00:00:" & t) <= Now Loop Application.Speech.Speak s Speak = c End If End Function Call the function like this, specifying...
  15. J

    Automatic Email When Topic is Answered

    Tell Chandoo to install this plugin: http://bbpress.org/plugins/topic/subscribe-to-topic/
Back
Top