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

    Scan for conditionally colored cells then copy, paste row to another sheet

    Wow! It works! Thanks Luke, you rock! YOu are indeed an Excel Ninja! Thanks for stickin with me.
  2. E

    Scan for conditionally colored cells then copy, paste row to another sheet

    Well, that looks like the same amount of work as far as copying and pasting formulas and once there's one helper column one more doesn't make any difference :- I did get them all done. I used columns N and O with the same row range as the H and I columns. If a cell in H or I is red it will...
  3. E

    Scan for conditionally colored cells then copy, paste row to another sheet

    Yeah, it would have to be 2 helper columns though - probably N and O for H and I respectively. I will work on the helper column :-
  4. E

    Scan for conditionally colored cells then copy, paste row to another sheet

    IF it sucks too bad THEN forget it ELSE let's do it! END IF ' :-p
  5. E

    Scan for conditionally colored cells then copy, paste row to another sheet

    Is there a way to do that without having to input all the CF formulas? Each cell has a relative cell that applies to it. That would be a major undertaking I would think. IF that's the case I'd say forget it.
  6. E

    Scan for conditionally colored cells then copy, paste row to another sheet

    Here's a couple of my conditional formatting formulas: For the weekly tasks: =7<=(DATEDIF(IF(E7="",$C$2,E7),$C$4,"d")) For the monthly tasks: =31<=DATEDIF(IF(E28="",$C$2,E28),$C$4,"d") THe rest are similar for the other interval tasks. I have semi-annual, annual, bi-annual...
  7. E

    Scan for conditionally colored cells then copy, paste row to another sheet

    It was another runtime error '9': subscript out of range. The debugger highlighted a line in the DisplayedColor function. I've "highlighted" it with stars ***** Were you able to download my document? ' Arguments ' ---------------- ' Cell - Required Range, not a String value, for...
  8. E

    Scan for conditionally colored cells then copy, paste row to another sheet

    Thanks. I tried it but it gave me an error. I was running out the door and didn't have time to write it down. I will look at it agin tomorrow and let you know. I can remember it was an error in the other guy's code not yours. I was reading some logs from another linked forum and it seems that...
  9. E

    Scan for conditionally colored cells then copy, paste row to another sheet

    ah well, if it's gonna be too tricky, I could post all the conditional format formulas. I have 18 altogether. Nine of them apply to column H and 9 apply to column I. LOL! Are you regretting this yet? P.S. oh and there might be a couple that only apply to individual, unique cells P.S.S. and...
  10. E

    Scan for conditionally colored cells then copy, paste row to another sheet

    Here's ColorOfCF and GetStrippedValue as well (for reference): Function GetStrippedValue(CF As String) As String Dim Temp As String If InStr(1, CF, "=", vbTextCompare) Then Temp = Mid(CF, 3, Len(CF) - 3) If Left(Temp, 1) = "=" Then Temp = Mid(Temp, 2) End If Else Temp = CF End...
  11. E

    Scan for conditionally colored cells then copy, paste row to another sheet

    Wow, thanks for the help! I assigned the main macro to a button and when I executed it I got an error in the ActiveCondition function - not your code. Strange that it ran fine when it was used by ColorOfCF in the worksheet with a formula but now it's throwing a fit. The error is: Runtime error...
  12. E

    Scan for conditionally colored cells then copy, paste row to another sheet

    yeah because some in H will be red and some in I won't be
  13. E

    Scan for conditionally colored cells then copy, paste row to another sheet

    We would want to copy the entire row from A to I
  14. E

    Scan for conditionally colored cells then copy, paste row to another sheet

    here is my doc in 2007 Excel http://speedy.sh/bKFmH/Generator-Service-Schedule-Kohler-combined-with-shortcut-buttons-UNSIGNED.xlsm
  15. E

    Scan for conditionally colored cells then copy, paste row to another sheet

    I have different conditional rules applied to many different cells so that might make your suggestion a bit more challenging. As I stated the ColorOfCF function does work to identify the cell interior color. The value that ColorOfCF returns for red (the color I'm concerned with) is 255. Yes...
  16. E

    Scan for conditionally colored cells then copy, paste row to another sheet

    Hello, I'm trying to get some code for a specific tasks. I'm less than a noob at Excel VBA and I'm currently working on a maintenance task sheet for a couple of generators and need help. I have successfully created button macros to input dates but now I think I'm in over my head. I would like a...
Back
Top