+ Reply to Thread
Results 1 to 20 of 20

Formula required for Assignment status

  1. #1
    Forum Contributor
    Join Date
    04-24-2019
    Location
    Chennai
    MS-Off Ver
    MS office 2007
    Posts
    104

    Formula required for Assignment status

    Dear team,

    I am looking out for a formula to get the status of cases received on a daily basis.
    I m looking out for a count of cases assigned to each users that is arrived Before 2 and after 2.

    I have updated​ the summary in the attached Excel.

    Kindly review and assist me.

    Appreciate all your assistance.
    Attached Files Attached Files

  2. #2
    Forum Expert avk's Avatar
    Join Date
    07-12-2007
    Location
    India
    MS-Off Ver
    Microsoft Office 2013
    Posts
    3,223

    Re: Formula required for Assignment status

    "c2" =COUNTIF(Data!F:F,Sheet3!B5)
    "c11" =COUNTIFS(Data!D:D,Sheet3!B11,Data!F:F,"Before 2")
    In other cell make change as per criteria.


    atul


    If my answer (or that of other members) has helped you, please say "Thanks" by clicking the Add Reputation button at the foot of one of their posts.

    Also: if your problem is solved, please take the time to mark your thread as SOLVED by going to the top of your first post, selecting "Thread Tools" and then "Mark thread as solved".

  3. #3
    Forum Expert BadlySpelledBuoy's Avatar
    Join Date
    06-14-2013
    Location
    East Sussex, UK
    MS-Off Ver
    365
    Posts
    7,468

    Re: Formula required for Assignment status

    You can use COUNTIFS() to do this. For example, the below is in C11:
    =COUNTIFS(Data!D:D,B11,Data!E:E,"Processor",Data!F:F,"Before 2")

    See attached where I've put in formulas for all your numbers on Sheet3.

    You don't really need the middle argument that is looking for "Processor" in some tables and "Checker" in the others, but I've included it in case you have a processor and a checker with the same name.


    BSB
    Attached Files Attached Files
    Last edited by BadlySpelledBuoy; 06-22-2019 at 09:53 AM.

  4. #4
    Forum Contributor
    Join Date
    04-24-2019
    Location
    Chennai
    MS-Off Ver
    MS office 2007
    Posts
    104

    Re: Formula required for Assignment status

    Hi Thanks.

    Does this formula counts #N/A as well ???

  5. #5
    Forum Contributor
    Join Date
    04-24-2019
    Location
    Chennai
    MS-Off Ver
    MS office 2007
    Posts
    104

    Re: Formula required for Assignment status

    Thanks Badlyspelledbuoy.

    Appreciate the quick fix. In the vlookup function as #n/a the formula excludes it.

    Am I correct?

  6. #6
    Forum Expert BadlySpelledBuoy's Avatar
    Join Date
    06-14-2013
    Location
    East Sussex, UK
    MS-Off Ver
    365
    Posts
    7,468

    Re: Formula required for Assignment status

    Correct, the N/A values in your data are being excluded by those formulas.

    BSB

  7. #7
    Forum Contributor
    Join Date
    04-24-2019
    Location
    Chennai
    MS-Off Ver
    MS office 2007
    Posts
    104

    Re: Formula required for Assignment status

    Thanks a lot for the quick fix !!!

  8. #8
    Forum Expert BadlySpelledBuoy's Avatar
    Join Date
    06-14-2013
    Location
    East Sussex, UK
    MS-Off Ver
    365
    Posts
    7,468

    Re: Formula required for Assignment status

    Happy to help.

    BSB

  9. #9
    Forum Contributor
    Join Date
    04-24-2019
    Location
    Chennai
    MS-Off Ver
    MS office 2007
    Posts
    104

    Re: Formula required for Assignment status

    Hi one more question, the time in the data sheet.

    Just for my learning I am asking, how do you segregate time and day from that. We have both date and time in a single cell.

    How does this gets calculated?

  10. #10
    Forum Expert BadlySpelledBuoy's Avatar
    Join Date
    06-14-2013
    Location
    East Sussex, UK
    MS-Off Ver
    365
    Posts
    7,468

    Re: Formula required for Assignment status

    I'm not sure I understand the question. Do you just want to know how to split a date/time cell into it's individual components (a date in one cell and a time in another)?

    If so then =INT(A1) will provide just the date and =MOD(A1,1) will provide just the time from a date/time in cell A1.

    BSB

  11. #11
    Forum Contributor
    Join Date
    04-24-2019
    Location
    Chennai
    MS-Off Ver
    MS office 2007
    Posts
    104

    Re: Formula required for Assignment status

    Thank you. I have one more doubt, the stats in the data tab "before 2" and "after 2" I am updating manually.

    Can you please let me know if a formula can be put up so it automatically captures the status...

  12. #12
    Forum Expert BadlySpelledBuoy's Avatar
    Join Date
    06-14-2013
    Location
    East Sussex, UK
    MS-Off Ver
    365
    Posts
    7,468

    Re: Formula required for Assignment status

    Quite possibly, but it all depends on what "Before 2" and "After 2" actually mean and how you calculate them manually.

    For example, does it mean before/after 2pm? If so then why is row 2 before when the time is 6pm?

    BSB

  13. #13
    Forum Contributor
    Join Date
    04-24-2019
    Location
    Chennai
    MS-Off Ver
    MS office 2007
    Posts
    104

    Re: Formula required for Assignment status

    Hi. Let me explain clearly

    See the before 2 pm is actually means 14:00. If you look at my data when the previous day (21/6/2019)after 6 pm i.e 18:00 will also be considered as before 2 pm next day.

    That's why I quoted them as before 2 pm which is a cut off to process the cases.

  14. #14
    Forum Expert BadlySpelledBuoy's Avatar
    Join Date
    06-14-2013
    Location
    East Sussex, UK
    MS-Off Ver
    365
    Posts
    7,468

    Re: Formula required for Assignment status

    So anything between 18:00 and 14:00 the next day is "Before 2" and anything between 14:00 and 18:00 on the same day is "After 2"??

    BSB

  15. #15
    Forum Expert BadlySpelledBuoy's Avatar
    Join Date
    06-14-2013
    Location
    East Sussex, UK
    MS-Off Ver
    365
    Posts
    7,468

    Re: Formula required for Assignment status

    Maybe this in F2 and copied down:
    Formula: copy to clipboard
    Please Login or Register  to view this content.


    BSB

  16. #16
    Forum Contributor
    Join Date
    04-24-2019
    Location
    Chennai
    MS-Off Ver
    MS office 2007
    Posts
    104
    You are correct !!

  17. #17
    Forum Contributor
    Join Date
    04-24-2019
    Location
    Chennai
    MS-Off Ver
    MS office 2007
    Posts
    104
    Quote Originally Posted by BadlySpelledBuoy View Post
    Maybe this in F2 and copied down:
    Formula: copy to clipboard
    Please Login or Register  to view this content.


    BSB

    Thank you BSB. Appreciate all your assistance.

    I just have a doubt on how to find the overdue for a case.

    For example, I have a case maturity date as 29-06-19, this means that this is not overdue. Any date which is less than today's date should be considered as overdue.

    Can you please let me know how do I find that using a formula..

  18. #18
    Forum Expert BadlySpelledBuoy's Avatar
    Join Date
    06-14-2013
    Location
    East Sussex, UK
    MS-Off Ver
    365
    Posts
    7,468

    Re: Formula required for Assignment status

    If the maturity date is in A1 then =IF(A1< TODAY(),"Overdue","") would work.

    If that's what you mean then upload another attachment showing exactly what you mean. Your previous attachment did not have "Maturity Date" as far as I can remember.

    BSB

  19. #19
    Forum Contributor
    Join Date
    04-24-2019
    Location
    Chennai
    MS-Off Ver
    MS office 2007
    Posts
    104

    Re: Formula required for Assignment status

    Response much appreciated !!!

    Thanks BSB !!!

  20. #20
    Forum Expert BadlySpelledBuoy's Avatar
    Join Date
    06-14-2013
    Location
    East Sussex, UK
    MS-Off Ver
    365
    Posts
    7,468

    Re: Formula required for Assignment status

    No problem. Happy to help

    BSB

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] Highlight Cells on Assignment Status
    By Billy Spivy in forum Excel Formulas & Functions
    Replies: 10
    Last Post: 03-28-2018, 08:51 AM
  2. Project status color automation required
    By parikshitpathak in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 06-13-2017, 12:59 PM
  3. Replies: 3
    Last Post: 09-11-2014, 04:32 PM
  4. VBA Status of Pass/Fail Required on Userform
    By Dereshp in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 05-12-2014, 11:57 PM
  5. Replies: 4
    Last Post: 04-08-2012, 09:43 PM
  6. Macro required to find the total in each status
    By geeth_shan2 in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 09-23-2011, 07:23 AM
  7. Help required for college assignment!!
    By trustus in forum Excel General
    Replies: 3
    Last Post: 03-15-2005, 10:11 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1