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

    Reuse textbox userform to populate table

    Narayan, Thank you for your help. I have looked at the file and tried to determine how to proceed but unfortunately I am afraid it is beyond my vba skills. I would greatly appreciate your continued assistance. I am not sure how to use the combobox ID to populate the correct field in the...
  2. J

    Reuse textbox userform to populate table

    Hi: I have drafted up a sample of my problem. Here is the link. https://www.dropbox.com/s/fg50jrb7dbg79ur/txtbox%20userform.xlsm As you can see my table has a ton of combo boxes. For the sake of my question we are only concerned with the combo boxes in the 'Notes' rows (5, 9, 13, 17, 21)...
  3. J

    Disable userform OK button until all fields are filled

    Thank you both for your help! Works perfectly!
  4. J

    Disable userform OK button until all fields are filled

    Hello, I have to imagine this has been asked before....but I cannot seem to find a solution that has worked for my situation: I want to ensure that every field in my userform is completed before the OK button is enabled. In total the userform contains 9 textboxes, 2 combo boxes and 1 list...
  5. J

    Slow Chart Scrollbar

    I AM using dynamic named ranges. Please tell me this is not the issue. I have a graphs sheet set up, with 4 charts that have dynamic ranges (for each series and for category series) so that as the source range is updated, the charts reflect the update. I have some big IF and VLOOKUP formulas but...
  6. J

    Fill down and fill right variable number of rows/columns

    Smallman, The reason I want to use vba here is because this whole sheet is populated by vba, pulling from the data sheet. So it is not like another column gets added to existing data, but rather the sheet is re-populated with this additional column. Hence the non-static starting point for the...
  7. J

    Fill down and fill right variable number of rows/columns

    Thanks for your help guys. Smallman I would appreciate a followup as I still do not know how to reference the changing starting point and ranges when writing vba.
  8. J

    Fill down and fill right variable number of rows/columns

    sorry that does not do a good job of laying out the problem. please see sample workbook https://www.dropbox.com/s/r7ih11dm4oumuc7/vba%20filldown%20example.xlsm
  9. J

    Fill down and fill right variable number of rows/columns

    Hi, I have a list of data that will be changing. This list can span multiple months/years. I wanted to produce a "top 10 list" from this data. I can do this manually, through use of large formula but I want vba to be able to do this without referring to specific ranges. I am not too familiar...
  10. J

    Slow Chart Scrollbar

    Hi, I have a scrollbar that I use with a dynamic chart that goes scrolls through quarters of data. I am experiencing significant (2 sec) delay from when I click the scrollbar to when the chart reflects the update. Does anyone know what might be the cause of this delay? Thank you
  11. J

    Count # times a word appears in column of text strings?

    Hi, I have a column that contains text strings and I want to count the number of times any cell in this column has a specific word in its text string...so say my column has values like: Meals-Breakfast Parking Meals-Lunch Lodging Taxi Meals-Snack Meals-Lunch Airfare Meals-Dinner Meals-Snack I...
  12. J

    Refresh ListFillRange of ComboBox

    I want a combobox that updates whenever a button is clicked. I have tried using a dynamic named range along with the .RowSource and .ListCount properties but have had no success. The combobox lists years that correlate to the present data. When a new year of data gets added, I want the...
  13. J

    Dynamic Chart Data Label [SOLVED]

    I just figured this out...with the help of the articles here on Chandoo :). Selecting the range for data labels would give 0's where I wanted blanks...but if I go to each individual point and set that data label text box equal to specific label cell, the blanks no longer show as zeroes...
  14. J

    Dynamic Chart Data Label [SOLVED]

    Hello, I have a simple bar chart listing employee data. I have cleaned it of the normal chart clutter (axes, gridlines, category name & legend) and want to add some dynamic data labels. I have added a combo box control to the chart as well as a dummy series so that you can select any employee...
  15. J

    Microsoft Date Time Picker not available in Excel 2010??

    Hi, Last week I was working with Excel 2007, and I had created a workbook that used the Microsoft Date & Time Picker a number of times. I have distributed this workbook to a number of colleagues...and have since upgraded to Excel 2010. Now, when I open the workbook, a big ugly red X appears...
  16. J

    How to get data from one sheet to another?

    Dhanushr, Do you just want synchronized worksheets? Post a sample workbook so you can be better helped. You can type "=sheet1!K7" in K7 of sheet2 and this will liveupdate whenever sheet1's K7 is changed. You can then use autofill to apply this to the necessary cells. This is probably not the...
  17. J

    Can users access Excel School materials from two computers? [SOLVED]

    Hi, Talked with my boss today and he said the company will pay for me to go to Excel School!!! I'm a little excited. Anyways, before I go through with the purchase I wanted to know if there would be any issue with me accessing the program and materials from both my work and personal...
  18. J

    Charting a User-Selected Range with VBA

    Hello, I am in the process of creating a nifty workbook (link below)--with loads of help from a handful of you ninjas--that takes raw data and uses a pivot table to organize the data to be used in several graphs. (I have not incorporated graphs yet). The user clicks the metrics button and is...
  19. J

    Using Excel to Populate a PDF Form [SOLVED]

    life as a ninja must be challenging! one last hurdle I can see that lies ahead: This whole worksheet event code is for a worksheet that will be deleted and re-created every time the user uploads new data. What is the best way to incorporate the code so that every time this worksheet is...
  20. J

    Using Excel to Populate a PDF Form [SOLVED]

    Doh! I realized I hadn't saved your file since working with it. Once I saved it started working properly! As far as I am concerned, I do not have anything that loads whenever Excel is opened. However, I do have one workbook with a lot of macros. Can you tell me why (or if) its important to...
  21. J

    Using Excel to Populate a PDF Form [SOLVED]

    SirJB7 I downloaded the updated workbook and I still receive the same error messages (unspecified and compile error:out of memory) when I select warning from dropdown. I think this is because of the userform and pdf incompatibilities. Private Sub Worksheet_Change1 references this userform...
  22. J

    Using Excel to Populate a PDF Form [SOLVED]

    I have done that edit, and now the code runs completely through but the desired cells of "thisRow" are not copied to the TargetSheet. I have triple checked that I am referencing the correct cells. Do you see any mistakes with the code below the trigger event?
  23. J

    Using Excel to Populate a PDF Form [SOLVED]

    Hi, Please review my code below. I have combined your code with the code that will copy certain cells to other sheet. It gives me an error code "Compile error: object required" when the code is triggered. The error points to this piece of code: 'Set thisRow = Target.Row' I have tried...
  24. J

    Using Excel to Populate a PDF Form [SOLVED]

    Thanks for the reference...although from my digging I am thinking the next best option of saving as pdf will have to be pursued. I still need to configure the dropdown list column to trigger this macro if Warning is selected. I have tried the worksheet change event route as explained here...
Back
Top