Unique distinct records sorted by frequency


Blog updates by email:

Delivered by FeedBurner

 

2 Responses to “Unique distinct records sorted by frequency”

  1. William J. Ryan Says:


    Thi site helped me crate a list of unique users from a data extract however I want to go one more step and next o the unique user add in the location they are at. Location is column A, user is column B and unique user is in column I, in column J I just want to have their location - can you direct or guide me to the tip to clip? Thank you!!

  2. Oscar Says:


    William J. Ryan,

    Formula in J2:

    =INDEX($A$2:$A$100, MATCH(I2, $B$2:$B$100, 0))

Leave a Reply

Count the number of groupings of each value


Blog updates by email:

Delivered by FeedBurner

 

One Response to “Count the number of groupings of each value”

  1. Joe Says:


    That works!! Great Stuff!

    Thanks Oscar!

Leave a Reply

Use a drop down list to extract and concatenate unique distinct values


Blog updates by email:

Delivered by FeedBurner

 

One Response to “Use a drop down list to extract and concatenate unique distinct values”

  1. Tom Says:


    I am trying to create an estimating form that will calculate a total cost based of the values given. I have a drop down list, and i want it to produce a $ value for each item in a different cell. My goal is to create a form that will calculate total values.

Leave a Reply

Add or remove a value in a drop down list


Blog updates by email:

Delivered by FeedBurner

 

2 Responses to “Add or remove a value in a drop down list”

  1. Jacky Harle Says:


    We have problem with drop list if you remove the first name of the list may be we can change to:

    =OFFSET(Sheet1!$H$2:INDEX(Sheet1!$H$3:$H$990,COUNTA(Sheet1!$H$3:$H$990)-1),1,)

  2. Oscar Says:


    Jacky Harle,

    =OFFSET(Sheet1!$H$3, 0, 0, COUNTA(Sheet1!$H$3:$H$1000))

Leave a Reply

Count specific weekdays in a date range


Blog updates by email:

Delivered by FeedBurner

 

3 Responses to “Count specific weekdays in a date range”

  1. chrisham Says:


    Oscar, here's an alternative

    =SUM(--(TEXT(ROW(INDIRECT("A"&$B$1&":A"&$B$2)),"ddd")=D1)) for the first formula

  2. chrisham Says:


    My alternative for the 2nd Formula (excluding the holidays)

    =SUM(IF(NOT(ISNUMBER(MATCH(ROW(INDIRECT("A"&$B$1&":A"&$B$2)),Holidays,0))),(--(TEXT(ROW(INDIRECT("A"&$B$1&":A"&$B$2)),"ddd")=D1))))

  3. Oscar Says:


    chrisham,

    Yes, thanks.

    I seem to have answered this question already, here is also an alternative:
    How many of a specific weekday falls between a start date and an end date except holidays

Leave a Reply