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

    Macro to copy and paste column values

    I have tried changing the order. I have commented out those routines. I have done all kinds of things. I can do this in any order manually. When I run the script, I have the issues. The order is different in the script above because I was changing it around to see if it helped the issue. I...
  2. T

    Macro to copy and paste column values

    Sub cmdButton6_OnClick() Two Three One End Sub Sub One() Range("Table1[Cumulative % Complete]").Copy Range("Table1[Actual % Complete]").PasteSpecial Paste:=xlPasteValues End Sub Sub Two() Range("Table1[Revenue Realized]").Copy Range("Table1[Realized Revenue]").PasteSpecial...
  3. T

    Macro to copy and paste column values

    None of them are overlapping. The strange thing is that I can manually copy and paste each of these ranges without a problem. It is only when I run the script with all three that there is an issue. I spent a few hours last night trying to figure this one out and it has me completely stumped!
  4. T

    Macro to copy and paste column values

    This is still doing the same behaviour. The copy and paste from "Revenue Realized" to "Realized Revenue" deletes the the data out of Revenue Realized and does not update Realized Revenue. If I comment out the other copy and pastes, this works fine. If the other copy and pastes are not...
  5. T

    Macro to copy and paste column values

    I have a spreadsheet that must have values from three seperate columns copied and pasted into three other columns. The columns being copied from have their data generated from formulas. I need to paste the values only into the new columns. The original values and formulas must be left in the...
  6. T

    evaluate entire table column for any value meeting condition

    I need to change the color text of Cell B2 if any value in table column K, meets the a condition. I am using the following formula, but missing something because I get an error. Any help would be greatly appreciated. ND(Table1[Cumulative % Complete]<1,AND(MONTH(Table1[Est Month...
  7. T

    conditional format if date less than current month

    Great! I see what the issue was now.
  8. T

    conditional format if date less than current month

    I am trying to create a conditional formatting formula that will highlight a cell when the month and year for the date listed in is less than or equal to the current month and year. Cell A2 = Today() Table column I4 to I16 = any entered date I want to ignore the days and only focus on the...
Back
Top