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

    Quality form with Transpose

    Hi, I am trying to make a Quality form in Excel, the questions will be one below the other with a drop down to choose from ( Yes, No, N/A) or Points (10, 15,20,30 etc). I want a macro that helps me transpose all the results of one evaluation to a new sheet in horizontal format and add the...
  2. S

    Need help with loop entry

    Hi Luke this was great worked like a charm
  3. S

    Need help with loop entry

    Hi Luke, I have ammended the file path, one finial thing remains and not sure if this can be incorporated, is it possible to add the user name to the file name before it is saved. for eg the randomizer will be used by multiple analyst, current the files are being saved as Extract_current date...
  4. S

    Need help with loop entry

    HI Luke, This works great i have edited the macro to include current time as well with Format(Now, "dd-mmm-yy h-mm-ss") command. Will it be possible to save the new created file to a diffrent folder, currently it saves the file in the folder from where the randomizer is being run. what if i...
  5. S

    Need help with loop entry

    Hi Luke, So what i am trying to do is post running following code Sub Random_Sampler_Final() Dim lastRow As Long Dim ws As Worksheet Dim wb As Workbook Application.ScreenUpdating = False With ThisWorkbook.Worksheets("Input") .AutoFilterMode = False lastRow = .Cells(.Rows.Count...
  6. S

    Need help with loop entry

    Hi luke, In addition to the attached earlier code, i am trying to have the automated email functionality, i found a code from some post (by you :)) and used the following to achive this. however in the earlier macro the new workbook is being created with a new name how do i edit the macro to...
  7. S

    Need help with loop entry

    HI Luke, sorry i forgot to mention that the copy agent logic was excluded. it was a bit confusing when the randomizer was used. i found a better way of doing it through PIVOT in chandoo tutorial http://chandoo.org/wp/2014/01/31/how-to-select-a-random-sample-from-all-your-data/. The above macro...
  8. S

    Need help with loop entry

    Hi Luke, I have attached the sample file, above code was giving me error while calling the second code. In the attached file, the second macro should copy the details from "pivot" sheet starting from a2 till E last row and paste it to a new workbook
  9. S

    Need help with loop entry

    Also a side request :- How do i learn the macro language
  10. S

    Need help with loop entry

    Hi Luke sorry if i sound stupid but i am trying to add the modifed code to following code, after the pivot refresh the next code should copy the data from a2 to end of E and paste it to a new workbook Sub Random_Sampler_v2() ' ' Random_Sampler_v2 Macro ' With ActiveSheet .AutoFilterMode =...
  11. S

    Need help with loop entry

    Hi Luke, I need to edit the macro to copy the rage from A2 to the last entry in column E. eg a2:e555.
  12. S

    Need help with loop entry

    Hi Luke, How do i edit the last row entry to copy the data from range A2 to last data of column E and paste it to a new sheet. currently the code reads data in the sheet only for column A lastRow = .Cells(.Rows.Count, "A").End(xlUp).Row
  13. S

    Need help with loop entry

    Hi Luke sorry for late reply I was OOO... this works as needed.
  14. S

    Need help with loop entry

    Hi Luke, I ment to mention 1 sheet only with details of all the agent is same sheet. one below other.
  15. S

    Need help with loop entry

    Hi Luke, it will be 1 sheet with unique entries for each agent
  16. S

    Need help with loop entry

    Thanks Luke, this works perfect....I have made certain ammendments to suit the sort prefrences. One other thing in addition to the above macro, is there a entry to select the data matching two criteria and pasting it to a diffrent sheet. For eg in the attached sheet post running macro 1...
  17. S

    Need help with loop entry

    Hi All, I am trying to create a radom sampler for selecting random cases for audit, attached si the macro created. Within this macro i am unable to add the loop entry to ensure that the random formula is applied to the last entry in the 1st column. Kindly assist
  18. S

    Count if with count A array [SOLVED]

    Thank you NARAYANK991 this works great. should have thought about using data_text :) Thank you all
  19. S

    Count if with count A array [SOLVED]

    Sorry for the delay, below is what i am using {=COUNT(IF(('Status report'!A2:A111="Aug'13")*('Status report'!B2:B111="Open"),COUNTA('Status report'!C2:H111)))} Sample file has been uploaded on dropbox link https://www.dropbox.com/s/jd4nclj6owt4s2p/Status%20Report.xlsx?m
  20. S

    Count if with count A array [SOLVED]

    Hi with count ifs I am getting #Value and with Sum product am getting #N/A error
  21. S

    Count if with count A array [SOLVED]

    Hi All, I wanted to check for a little modification in using Count(if with a count A condition. Attaching a dropbox link for sample file... https://www.dropbox.com/s/jd4nclj6owt4s2p/Status%20Report.xlsx?m I am trying to get a count of "cells with text" in Defect Calculation sheet based on...
  22. S

    countif based on multiple conditions

    Hi All, Thanks a ton for help with above formula, i wanted to check for a little modification in this with a count A condition. Attaching a dropbox link for sample file... https://www.dropbox.com/s/jd4nclj6owt4s2p/Status%20Report.xlsx?m I am trying to get a count of "cells with text" in...
  23. S

    countif based on multiple conditions

    Awsome narayan... this worked perfectly... I had tried count a - countblanks earlier insted of<>... Thank you everyone for assistance
  24. S

    countif based on multiple conditions

    here is the dropbox link https://www.dropbox.com/s/ighlme35ti376ld/Samp.xlsx?m A brief description on what i am trying to do... Sheet 1 is going to be my raw data base which will be updated daily... in Sheet 2 in fron for every agent there are 3 coloumns Reject, exchnage and Refunds.. I want...
  25. S

    countif based on multiple conditions

    I tried adding 0 to it and also as an array but no result.
Back
Top