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

Recent content by leader2k

  1. L

    copy random rows

    Thanks a lot,i appreciate the help i will try it today and let you know. My regards
  2. L

    copy random rows

    Hi i have a sheet with 6 columns (A1:F3000) when i hit a command button it copy 50 rows randomly ,but i end up having duplicate rows.i use the code bellow . [/Private Sub CommandButton1_Click() Dim rndRow As Long, i As Integer Rows(1).Copy Sheets("Sheet2").Range("A1") For i =...
  3. L

    copy random rows

    Hi No i have a sheet with 6 columns of data and i want to randomly choose some rows and copy them to another sheet . My regards
  4. L

    copy random rows

    Hi How to copy random rows without duplicates from one sheet to another in vba? your help will be appreciated
  5. L

    Vba Filter

    Hi p45cal And on my way it did, you’re absolutely on the money, I couldn’t thank you enough, I’ll make a donation as a gesture of appreciation, of the good work. My regards
  6. L

    Vba Filter

    Hi p45cal Thanx a lot for the smart reply, it’s immensely appreciated, if not much to ask ,is it possible to simply loop Q1:V1 row through A:F range and if it match 4,5 or 6 to delete the entire row from the A:F range, and go to Q2:V2 and do the same(loop through A:F range if it match 4,5 or 6...
  7. L

    Vba Filter

    Vba filter Here is a sample ,I use for filtering one combination at time , using the sumproduct/countif function, and I do the filtering manually as it’s shown on my sample,it’s time consuming when you have hundreds of thousands of rows, I will appreciate, if a gentleman/women could provide me...
  8. L

    integer filter

    Thanx anyway My regards
  9. L

    integer filter

    First of all I thank you very kindley for the help,it’s appreciated,but the solution it’s coming short of what I want ,which consist of running each row from table 2 against each row from table 1 and display the the rows that containing 4 matching numbers and up. I can use the function...
  10. L

    integer filter

    Hi Order doesn't matter ,each row from database No2 compaired against database No1 and highlight rows that contain at least 4 matches out of 6. very appreciatif of the help. My regards
  11. L

    integer filter

    Hi i have a worksheet with database No:1 A1 to F100000 (A1,B1,C1,D1,E1,F1 TO A100000,B100000,C100000,D100000,E100000,F100000) and i have database No:2(H1,I1,J1,K1,L1,M1TO H3000,I3000,J3000,K3000,L3000,M3000)so i want to loop through database1 against database2 and show rows that match 4,5 or 6...
  12. L

    integer filter

    How to filter rows of numbers 6 cells,and show only rows containing 4_5_6 matching numbers? i 'm compairing 3000 rows list against 100000 rows list. Assistance will be immensly appreciated.
  13. L

    sumproduct(countif combo

    Thanks NARAYANK991 for the reply ,but your formulas(array) gave me the same result as the one already using' =SUMPRODUCT(COUNTIF($H$2:$M$2,A3:F3))' i need the matches 3 and above showing not the 0-1-2 showing. My regards.
  14. L

    sumproduct(countif combo

    Hi sorry about the confusion and i appreciat your patience here is a link to the sample,if you look at the output i don't need the 0-1-2 matches i need it to display when it maches 3-4-5-6 (VBA if possible) thanks hopefully this time i've been more to the point. My regards...
  15. L

    sumproduct(countif combo

    Sorry Hui discard the previous post it was a formating mishab my project is a lottery like so when verifying the draw i need only the matching 3-4-5-6 numbers to show in the output column. thanks .
Back
Top