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

    Advanced Filter?

    I have a simple workbook with two worksheets, "Sections" and "Equipment." I would like to copy the "Section No." and "Section Description" columns to the "Equipment" worksheet only if the "Equip?" column says "Yes." I would like to do this without having to do a macro if possible where it...
  2. C

    Linking the content of two text boxes

    I have a very basic workbook with two worksheets. Both worksheets have two text boxes that will contain the same content. The text boxes will be filled out on the first worksheet. I would like the content to automatically appear in the text boxes on the second worksheet. I have scoured...
  3. C

    VBA Link Text Box to Cell Value

    Lohith, thank you very much for the link. I read the thread in detail but it appears my code is written slightly different. It doesn't like "textbox1" below. I have two textboxes, how does it know which is which? Set targetSheet = PayAppSOV.Sheets("SOV") Set sourceSheet =...
  4. C

    VBA Link Text Box to Cell Value

    I have two workbooks, BookFile and PayAppSOV. Both workbooks have an identical worksheet called "SOV." I would like to import the values from BookFile "SOV" into PayAppSOV "SOV." I actually have this functionality working using the code below: Sub ImportSOV() ' Get customer workbook...
  5. C

    VBA Error: Run-time error '1004': Cannot change part of a merged cell.

    Hmmm... E7:E30? The issue with the Macro lies in the Data Analysis worksheet. E7:F21 is supposed to be the results of the Advanced Filter from B7:B21. That is where I am getting the error in the Macro. Do the merged cells in rows 5 and 6 impact the Macro if they are never referenced in...
  6. C

    VBA Error: Run-time error '1004': Cannot change part of a merged cell.

    I just had a thought, do any merged cells in the entire workbook impact a macro? I noticed that UnmergeAllCells() did unmerge some of the cells on other worksheets.
  7. C

    VBA Error: Run-time error '1004': Cannot change part of a merged cell.

    I tried running UnmergeAllCells() and I received the following error: Run-time error '1004': Application-defined or object-defined error I have uploaded the workbook below. The issue lies on the Data Analysis tab where I am trying to advance filter. Another oddity, the zeros in the left...
  8. C

    VBA Error: Run-time error '1004': Cannot change part of a merged cell.

    Hui, that is the crazy thing. I have no merged cells in the entire worksheet that I know. I just received a macro to identify any merged cells on the worksheet. It works if I just manually run the advanced filter.
  9. C

    VBA Error: Run-time error '1004': Cannot change part of a merged cell.

    I have used the macro recorder to write a simple macro to use the solver, advanced filter, etc. The macro worked perfect and then I added the advanced filter portion and now it is giving the following error: Run-time error '1004': Cannot change part of a merged cell I don't get this because...
  10. C

    Vlookup Complications Percentages

    I apologize it has taken me so long to respond, I had to temporarily table the project for other responsiblities. SirJB7, your solution worked until it got to Tables,G64. It returns $3,600, the highest bonus, for all zero values. This technically doesn't matter because vlookup will never...
  11. C

    Exporting Non-Zero Entries into a New Table

    SirJB7, my apologies, I didn't realize the "Introduce Yourself" thread was frequently read by forum members. I will venture over there shortly and introduce myself. On a side note, I ended up using advanced filters as a solution to my problem!
  12. C

    Exporting Non-Zero Entries into a New Table

    I have a table that will always have Qty. 15 entries. At times, some of the table entries will have a zero value. I would like to create a new table that only has the non-zero entries. Your help is greatly appreciated! https://www.dropbox.com/s/ec45a22267j16jc/Desired%20Outcome.xlsx
  13. C

    Vlookup Complications Percentages

    I just read the sticky posts... :) https://www.dropbox.com/s/t9jhbow1rb9bs36/Store%20Monitor.xlsx
  14. C

    Vlookup Complications Percentages

    I am an Excel novice, but enjoy learning through websites like Chandoo.org. We own several Jimmy John's and I am attempting to build a spreadsheet for calculating a manager's bonus based on four performance based categories. I can't get the vlookup function to work correctly and I think it is...
Back
Top