• 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.

Search results

  1. P

    Excel VBA: How to create a dynamic skyline chart based on filtered range

    Dear Chandoo, I got this VBA code from internet to generate skyline chart based on data source in "System" sheet. To generate the skyline, we need to go to "Skyline" sheet and press "Generate Skyline" button. And the code works fine. >>> Moved this thread from Ask an Excel Question to VBA...
  2. P

    Counting Textbox value using CountIf - Excel VBA

    Dear Hui, Thanks for the response, by the way what is the meaning of Abs statement? Best Regards
  3. P

    Counting Textbox value using CountIf - Excel VBA

    Hi, I have 3 textboxes in number format. In texbox1 value = 11, textbox2 value = 5 and textbox 3 value = 11. And I want to count how many number of 11 in a textbox4, every time the value in textbox1 is change or update. Private Sub TextBox1_AfterUpdate() On Error Resume Next...
  4. P

    Adding Vertical and Horizontal Scrollbars in a userform using Userform_Activate method

    Dear Chandoo, I have to add both vertical and horizontal scrollbars in a userform, so far I have this code below for horizontal scrollbars only. The question 1, how to make a vertical scrollbar in the same userform? Private Sub UserForm_Activate() With Me .ScrollBars =...
  5. P

    Lookup Last Match of a ComboBox value - VBA

    I changed the code into this, and running well. TextBox8.Value = Evaluate("=Lookup(2,1/(Data!F4:F23=""" & Me.ComboBox1.Value & """),Data!O4:O23)") Thanks so much for your help. I really appreciate it. Chandoo is the best !!!
  6. P

    Lookup Last Match of a ComboBox value - VBA

    Really sorry, below the password : p@ss_W0rd+Exc3L*cAkZ?pR1mA=SuRy4&$ Dhanyavaad
  7. P

    Lookup Last Match of a ComboBox value - VBA

    Hello, I want to extract the last driving kilometer of a vehicle ID, let's say 27001 thru a ComboBox1. The database is store in sheets "Data", and the number of vehicle ID is in column F while the driving kilometer is in column O. So, when I change the vehicle ID in ComboBox1 then it will...
Back
Top