Comments on: How to use Excel COUNTIFS and COUNTIF with multiple criteria

The tutorial explains how to use COUNTIFS and COUNTIF formulas with multiple criteria in Excel. You will find a number of examples for different data types – numbers, dates, text, wildcard characters, non-blank cells and more. Continue reading

Comments page 41. Total comments: 2055

  1. Hi,

    I have a spreadsheet that I am working on and cannot figure out if I can do this or if this is even possible.
    So what I have is 3 columns. I have dates in 2 of them. I need the 3rd column to perform an "If" or "COUNTIF" statement that is.. If the date in column 2 is greater or after the date in column 1, calculate the days late or the difference in column 3. Is that possible? Would love to know. Thank you!!

    1. Hi Mariah,

      You can use the following formula in column 3:
      =IF(B22>A22,(B22-A22),"")

      Here column A is column 1 and column B is column 2.

      1. Thank you so much.
        I got it to work but how do I get it for the whole column? I was selected on one cell and did the IF statement but how do I set it for the whole column?
        Thanks again!

  2. hi Svetlana, i have created a any year calander, now i wanted to mention the holidays. here in Sri Lanka the holiday not constant for every year it is differ the other years, i think if we created a holiday chart and can match to the calender? pls help me

  3. I use this formula to Overlap dates with more criteria =COUNTIFS($A$3:$A$16,H3,$C$3:$C$16,">="&I3,$B$3:$B$16,"<="&J3)

    But i want to return value how to use index match formula in this formula

  4. Hi,
    I need to count many numbers within the same cell.
    For example, (10,12,13,15,16,17,18,20) is located at J16.
    The numbers represent calander week numbers for an event.
    At the moment I am physically counting many hundreds of these cells, high risk of human error.
    Can excel count the above example would = 8
    I can't use different cells, as software importing this data cannot deal with many cell references, only one cell.
    Thanks, Ed.

    1. Hi Ed,

      If we assume that there is always one more number than there are commas, you can use the following formula:
      =LEN(A1)+1-LEN(SUBSTITUTE(A1,",",""))

      Here A1 is the cell with numbers you want to count.

  5. hi

    I am doing a rota/roster based on our initials at work we rotate who works mondays. column a is date and column b is initials - how do i work out how many mondays people do by a formula?

    1. Hello Will,

      Please try to use the following array formula:
      =SUM((--(WEEKDAY(A1:A43,2)=1))*(1/COUNTIF($B$1:$B$43,$B1:$B43)))

      A1:A43 is the range with the dates here;
      $B$1:$B$43 is the range with initials.

      Once you enter the formula, you need to press Ctrl+Shift+Enter.

      If you don't get the expected results, please send a sample worksheet with your data to support@ablebits.com. Please include a link to this blog post and your comment number.

  6. Hi how to make formula for this long spreedsheets

    Building Name Received
    building 1 Chain
    building 1 Chain how many chain received by building 1 ???
    building 1 cups how many cups received by building 1 ???
    building 2 Chain
    building 2 Chain
    building 3 Chain
    building 3 cups
    building 3 glass
    building 4 pencil
    building 4 pencil
    building 100 bag

  7. How to make start time and finish time between many times in excel?
    For example, we want to know start time, finish time, and idle time for each hub.
    The raw data :
    Order Number Time Hub
    A-1 1/1/16 6:49 PM BSI
    A-2 1/1/16 6:49 PM BSI
    A-3 1/1/16 6:49 PM BSI
    ...

    Expected result :
    Hub Total Packages Start Time Finish Time Idle Time
    BSI 81 1/1/16 6:49 PM 1/1/16 6:52 PM
    BNO 50 1/1/16 3:32 PM 1/1/16 6:25 PM
    CKU 49 1/1/16 3:35 PM 1/1/16 6:27 PM

    1. Hello,

      You can use the following formula to calculate the start time:
      =MIN($B2:$B181)

      Here is the formula you can use for the "Finish time":
      =MAX($B2:$B181)

  8. how would I countif the criteria is a date and I want to count if the year matches?

    1. Hi Stacy,

      You can use the YEAR function to extract a year from a date.

      It's difficult to suggest an exact formula without knowing anything about your data.

  9. Hi,

    I am very much happy to see your blog for all clarifying excel formulas..
    there are two sheets around 20,000 thousand lines the projects are repeated each lines had X value in one sheet and another sheet had Y value...

    My questions are...
    How to accumulate value project wise between X and Y and comparing the difference...without using pivot and v lookup formula...

    thanks
    shakthi

  10. I am trying to construct a very complicated count if formula that will track if my Cubscouts have completed certain NOVA achievements. http://www.scouting.org/stem/Awards/CubScout.aspx

    For Example To earn the CubScout NOVA Award: Science Everywhere

    Condition #1 Ai and Aii>1
    OR
    Condition #1 Bi and Bii>1
    OR
    Condition #1 Ci and Cii>1
    AND Condition#2 A:E>0 (pick one A thru E)
    AND Condition #3 A:C=3 (do all A, B and C)
    AND Condition #4 A:B=2 (do A and B)
    AND Condition #5 A=1 (do A)

    Each requirement will be listed in a row and then the individual boys will be tracked in the columns. I can send a spreadsheet with these entered if it is easier to visulaize it that way

  11. Hi,

    I need help to complete my first excel document. details below.

    I need to add criteria in Validation like this (MV1601, MV1602, its needs to continue up to MV1654 ). Can anyone please help me to finish my document soon.

    Many Thanks
    Mahesh

  12. Hi Svetlana,

    I am attempting to create a formula which sums one cell based on two other cells meeting a certain criteria (month and a specific word).

    Cells A3:A2000 are where my dates reside.
    Cells B3:B2000 are where my cost resides.
    Cells E3:E2000 are where the word resides.

    If cells A3:A2000 has a date within January and cells E3:E2000 has the word Groceries, I would like to Sum cells B3:B2000.

    Thanks for any time you have in dedicating to this question.

    1. Hello, Daniel,

      You can try the formula below:
      =SUM((B3:B2000) (MONTH(A3:A2000) = 1) (C3:C2000 = "Groceries"))

  13. Hi, I need a total count how often a student has achieved a grade of C or above (A*, A, B or C). The cells containing the grades are not next to each other so I need to have a range of data counted from separate cells and presented as one number.

    1. Hello, Mark,

      Please use this formula:
      =CONCATENATE("A* = ",COUNTIF(A:A,"A*"),", A = ",COUNTIF(A:A,"A"),", B = ",COUNTIF(A:A,"B"),", C = ", COUNTIF(A:A,"C"))

      Here A:A - is the range with the grades.

  14. Hi I have a Excel Sheet, Where i have Numbers achieved by sales team like (In Column A)
    1005,25900,5000,2005,1598,5368 etc..now i want to use a formula where i need to get the answer like..
    if in Column a amount is upto 1000 then in column be it should count 2 points and if amount is in between 1001-2000 then 3, if amount is 2001-4000 then it should show as 5..

    can u help on this

    1. Hello, Charu,

      Please enter the formula below to B1 and copy it across the column:
      =IF(A1 < 1001, 2, IF(A1 < 2001, 3, IF(A1 < 4001, 5)))

  15. How can I calculate the number of leads received during specific time ranges. E.g. how many leads did I received during 0:01:00 to 0:30:00 and so on.

    I've 10,000s of leads received during 0:00:01 to 24:00:00. I am taking a time range of 30 minutes, 0:01 - 0:30, 0:31 - 1:00 an so on..

  16. Hello, I have founded a very important function from this site.
    thank you very much.

  17. Count the number in Unic criteria. To say

  18. I'm trying to use countif or countifs to count how many times a name shows up, the catch is there are many names, and I don't want to find all of them to do =countif(a5:a25,"JANE DOE"). Is there a way for excel to count and prompt the name & qty? I'm trying to calculate how many ECNs are assigned to individuals within a large group. Thank you for your help!

    1. Hello, Jules,

      Please try the following:
      1. Select an empty cell in your table
      2. Go to the Data tab -> Consolidate
      3. Select Count from the Function drop-down list
      4. Highlight the column with names and the one next to it
      5. Tick the left column check-box and click OK.

      Hope this helps.

  19. my problem that conditional formatting in sheet formula that if date enter than red color how cell end count automatically red color
    exp:-
    09/01/2016

    09/01/2016

    how to count two cell red any formula

  20. i have a table of employees by department and then a breakdown per day of holiday days and i need to count the amount of holiday days by department by month. is this possible?

    1. Hello, Natasha,

      For us to be able to help you better, please send us a sample table with your data in Excel. You can email it to support@ablebits.com. Please add the link to this article and your comment number.

  21. Hello, I have been trying to figure out how to come up with a formula that counts cells from two different columns but that both represent one person. For example, I have an admitted column and a discharge column for clients. I'm looking at the first quarter of the fiscal year which counts October, November and December. However, when looking at each month individually, for example, October has clients that were admitted in August so I am trying to come up with something that counts before October but not after October as well as before November but not after November, etc. Does that make any sense? I apologize, I have been working on this for a while.

    1. Hello, Mayra,

      For us to be able to help you better, we need a sample table with your data in Excel. You can email it to support@ablebits.com. Please add the link to this article and your comment number.

  22. A B
    KPC164-FAB-Z13-BW20D-01#0001 19-Dec-15
    KPC164-FAB-Z13-BW20D-01#0002 19-Dec-15
    KPC164-FAB-Z14-BW20D-01#0002 15-Dec-15
    KPC164-FAB-Z14-BW20D-01#0003 15-Dec-15
    KPC164-FAB-Z15-BW20D-01#0023 05-Dec-15
    KPC164-FAB-Z15-BW20D-01#0024 05-Dec-15

  23. Hi!

    I have 2 column in I need to count the date on column "B" with the corresponding text on column "A"
    I want to count this : Z13-BW20D IF I HAVE CORRESPONDING DATE ON COLUMN "B"

    Can some giving me a little help for this one?

    Sample:
    ___________( column A)_____ (Colum B)

    KPC164-FAB-Z13-BW20D-01#0001 19-Dec-15
    KPC164-FAB-Z13-BW20D-01#0002 19-Dec-15
    KPC164-FAB-Z14-BW20D-01#0002 15-Dec-15
    KPC164-FAB-Z14-BW20D-01#0003 15-Dec-15
    KPC164-FAB-Z15-BW20D-01#0023 05-Dec-15
    KPC164-FAB-Z15-BW20D-01#0024 05-Dec-15

  24. Please reply soon in my mail id.

  25. Hi Svetlana Cheusheva Mam, Please solve my problem. There are subject codes and grades scattered in various columns & rows in excel sheet. How can i extract counted grades & codes in one cell of excel sheet jointly. What formula use in it. for example excel sheet given below yellow for your knowledge subject code 41 and next row grade A1 A2 B1 B2 C1 C2 D1 D2 .HOW TO COUNT TOTAL 41 A1 IS ............?
    CANDIDATE NAME SUBJECT CODE MRK GRD SUBJECT CODE MRK GRD SUBJECT CODE MRK GRD SUBJECT CODE MRK GRD
    RAM 30 99 A1 41 95 A1 30 99 A1 41 95 A1
    SHYAM 41 99 A1 48 95 A1 41 99 A1 48 95 A1
    RAJ 30 94 B1 41 88 A1 30 94 B1 41 88 A1
    PHILP 37 92 A2 42 80 B1 37 92 A2 42 80 B1
    PIKASO 41 80 A2 42 91 A1 41 80 A2 42 91 A1
    PHAS 37 93 A1 42 81 B1 37 93 A1 42 81 B1
    PARI 37 90 A2 42 70 B2 37 90 A2 42 70 B2
    RAJ 30 88 A2 41 68 B2 30 88 A2 41 68 B2
    RAMCHARAN 41 93 A1 42 82 A2 41 93 A1 42 82 A2
    ANUPAM 41 77 B1 42 82 A2 41 77 B1 42 82 A2
    VIJAY 41 80 A2 42 78 B1 41 80 A2 42 78 B1
    VISHAL 41 82 A2 42 73 B2 41 82 A2 42 73 B2
    VINAY 37 82 B1 42 65 C1 37 82 B1 42 65 C1
    VIMAL 41 72 B1 42 67 C1 41 72 B1 42 67 C1

    1. please give reply me as soon as possible.

      1. CANDIDATE NAME SUBJECT CODE GRD SUBJECT CODE GRD SUBJECT CODE GRD SUBJECT CODE GRD
        RAM 30 A1 41 A1 30 A1 41 A1
        SHYAM 41 A1 48 A1 41 A1 48 A1
        RAJ 30 B1 41 A1 30 B1 41 A1
        PHILP 37 A2 42 B1 37 A2 42 B1
        PIKASO 41 A2 42 A1 41 A2 42 A1
        PHAS 37 A1 42 B1 37 A1 42 B1
        PARI 37 A2 42 B2 37 A2 42 B2
        RAJ 30 A2 41 B2 30 A2 41 E
        RAMCHARAN 41 A1 42 A2 41 A1 42 A2
        ANUPAM 41 B1 42 A2 41 B1 42 A2
        VIJAY 41 A2 42 B1 41 A2 42 B1
        VISHAL 41 A2 42 B2 41 A2 42 B2
        VINAY 37 B1 42 C1 37 B1 42 C1
        VIMAL 41 B1 42 C1 41 B1 42 C1

        Sub. Code Total code A1 A2 B1 B2 C1 C2 D1 D2 E TOTAL
        30 6 result here
        41 20 8 6 4 1 0 0 0 0 1 20 IT IS MANUALLY COUNT AND WRITE
        37 8
        48 2
        42 20

        TOTAL IS MANUALY COUNT AND WRITE. YOU C A1 A2 B1 B2 C1 C2 D1 D2 & E BLOCK
        I WANT FORMULA IN BLOCK THAT AUTOMATICALLY COUNT AND WRITE . I HELP YOU FOR YOUR UNDERSTANDING . ONE LINE

        There are subject codes and grades scattered in various columns & rows in excel sheet.
        How can I extract counted grades & codes in one cell of excel sheet jointly. for example code 41 get A1, A2 B1 B2 C1 C2 D1 D2 & E. for example given below.

  26. Happy New Year Svetlana!

    I would like to know how to find text in a range on a sheet that will display in a cell based on the criteria inputted in adjacent column:

    So, I have an excel sheet "other sheet" showing a database of reg plates and vehicle type for a fleet of vehicles. On another sheet "current sheet", I need the vehicle type to display automatically in one column (see below where it says formula) when I type the reg plate number in the adjacent column.

    THANKS :)

    CURRENT SHEET OTHER SHEET
    REG TYPE REG TYPE
    A B 123 NISSAN
    1 123 formula 321 LANDROVER
    2 321 456 BUS
    3 456

    1. "CURRENT SHEET"
      REG 123, 456, 345
      TYPE FORMULA REQUIRED

      "OTHER SHEET"
      REG 123, 456, 345
      TYPE NISSAN, LANDROVER, BUS

  27. Hi Svetlana,

    What formula can be used to find the count of cells that contain the text that is present in some other cell?

    For eg. i can hardcord the formula like this: COUNTIF($E$3:$W$17,"Svetlana")

    But instead of "Svetlana", i need to give the cell address.

    1. *hardcode

      1. Hi Mayur,

        Nothing prevents you from supplying the cell address to the formula, e.g.:

        =COUNTIF($E$3:$W$17,$A$1)

  28. Hi Svetlana,

    I'm trying to count the instances a value is less than zero given two dynamic column ranges match. They are named ranges 'universe' and 'markets'. I have the following formula to give me the total number of instances that I have a match but I'm not sure where to add the criteria to return how many of these matches are less than 0.
    {=COUNT(IF(ISNUMBER(MATCH(universe,markets,0)),$A$7:$A$35))}

    Thanks for having a look!

  29. i have a data in excel sheet with cell content like this
    the a 1,2,3
    the p 1,2,3
    how do i count the number of commas in the range with cell content.
    i want the outcome like this
    cell_contain count
    "the a" 3
    "the p" 3
    i'll be very thankful if you provide answer for my query

  30. How do I make a formula that states that column D is 30% of Column D?

    1. Hi Sasha,

      Probably there's some misprint here. Column D cannot be 30% of the same Column D :)

  31. Hi Svetlana. Is it possible to use Countifs to pick up one of the criteria from a specific cell? I have tried, but it only ever returns a 0 value.

    For example, I have a list of companies in column A, the month in which an order was delivered in column B, and a note of whether the goods were OK or faulty in column C. I want to find out how many orders were delivered faulty in a given month.

    The formula
    =COUNTIFS(B3:B100,"=03 (14/15)",C3:C100,"=Faulty")
    works fine, but would it be possible to use another cell (let's say B102) to enter the month I am looking for and get Countifs to pick up and use the criteria from that cell?

    Many thanks.

    1. Hi David,

      If my understanding it correct, you want a formula to "extract" a month number (03) from values in column B. If all the values in B have the same pattern like 03 (14/15), including a space before the opening parenthesis, you can use the following wildcard in criteria1:

      =COUNTIFS(B3:B100, "03 (*", C3:C100,"=Faulty")

      As for entering the month is a separate cell, probably it's also possible, but I cannot think of such a formula at the moment, sorry.

      1. David,

        Here's how you can count cells based on the month number in cell B102:
        =COUNTIFS(B3:B100, B102&" (*",C3:C100,"Faulty")

        Important! You should enter the month number in cell B102 exactly as it appears in column B (03 in your example). And since Excel cuts off leading zeros in numbers, 03 shall be entered in cell B102 as text (Home tab > Number group > Text).

  32. Ok here is my question I have a multiple part number in one row and a serial number for each part number entered in a second row. I would like to count only the highest serial number for each of the different part numbers is this possible?

  33. Trying to simplyfy the below functions:
    C D
    0 On Board
    0A On Board
    1A
    3 On Board

    =COUNTIFS(HK!C4:C8,"=0",HK!D4:D8,"=On Board")+COUNTIFS(HK!C4:C8,"=0A",HK!D4:D8,"=On Board")+COUNTIFS(HK!C4:C8,"=1",HK!D4:D8,"=On Board")+COUNTIFS(HK!C4:C8,"=1A",HK!D4:D8,"=On Board")

    Tried this ... but no luck :(
    =COUNTIFS(HK!C4:C8,{"=0","=0A","=1","=1A"},HK!D4:D8,"=On Board")

    Need urgent help please..
    Thanks

  34. There's a File A and a File B, both in xls
    Both have the two columns each of the same names, say, "1" and "2".
    File A has 100 records. File B has 150 records.
    We need to add a column "3" to File B, and put a value 'NotFound' in it if the value in "1" is not found anywhere in A's column "1".
    After that is done, we need to repeat, in reverse. That is, add a column "3" to File A, and put a value "NotFound" in it if the value in A's "1" is not found anywhere in B's column "1".

  35. Trying to create a count for check (Tick) marks (where "P" is a tick). I can have multiple ticks per box in Excel. Currently it wants to add each tick. If I add 1 more tick to a box (2 ticks in a box) it will subtract it instead of add on to my current total. How do I fix this?

    My current syntax:

    =COUNTIFS(C7:C25, "P", C7:C25, "P")

    Please help. I need to be able to track my work.

    Thanks.

  36. my 1st column data is- =+COUNTIFS($G$5:$G$38,"ACTUAL",$H$5:$H$38,"D") this one

    when i scroll it 2nd column the data is- =+COUNTIFS($G$5:$G$38,"ACTUAL",$H$5:$H$38,"D") this one

    my question is why not data scrolled by column reference,where ever the data wants =+COUNTIFS($G$5:$G$38,"ACTUAL",$I$5:$I$38,"D")

    plz chk and tell me the soluation

    Thanks

    CHUMAN

  37. Dear All,

    I need your help to show the total time spent between multiple two cells repeatedly.

    For example, I'm starting my work by capturing the start time in A1 & ending at A2 and I'm getting the difference in A3 using the formula =A2-A1. After a short break, I'm again starting the time in A1 & ending in A2. Then what is the formula to be used to calculate the total timing spent in A4.

  38. I have two columns, column 1- Dates, column 2- Names.
    01/02/2015 ARYA
    01/02/2015 ARYA
    01/02/2015 ARYA
    02/02/2015 ARYA
    From the above example, I want the count to reflect 2, in other words I would want it to count as a single occurrence per day i.e., 01/02 - one occurrence & 02/02 one occurrence. Please help me with this. Please help me without date ranges as i need to use it for the entire year for different names.

  39. when i scroll from one column to another column it have changes of his values

    ie

    =+COUNTIFS($G$5:$G$38,"ACTUAL",$H$5:$H$38,"D")

    another one =+COUNTIFS($G$5:$G$38,"ACTUAL",$H$5:$H$38,"D") only copied where i want =+COUNTIFS($G$5:$G$38,"ACTUAL",$I$5:$I$38,"D")

  40. Hi Svetlana,

    If there are two columns A and B with following data:
    A B
    Apple 1
    Banana 1
    Orange 3
    Apple 1
    Apple 1
    Banana 1
    Banana 1
    Banana 1
    Banana 1

    In the above data I would first like to search in column B for value 1 and then count only unique values in column A in such a manner that the function returns 2 (i.e., Apple and Banana). Is this possible and if so how can it be done?

  41. I have data in Column F. The data is like either "M" or "MH", either "E" or "EH", either "N" or "NH". This is for counting Shifts.

    I am using formula to count : =COUNTIFS(F4:F30,"=E",F4:F30,"=EH") for counting Evening Shifts. But it is givining me value as 0 (Zero). Please let me know where am I wrong.

    Thanks for your help in advance.

  42. I'm trying to get a total count of the values in one column, i.e. "Y100" and with all rows that contain that y100 count the number of cells in another column. i.e. "A". I've tried =COUNTIFS('Mods (Entire)'!B:B,"Y100",'Mods (Entire)'!C:C,"A") and =COUNTIFS('Mods (Entire)'!B:B,"=Y100",'Mods (Entire)'!C:C,"=A") both come back with a count of zero. Any and all help is greatly appreciated, will send sample if needed.

  43. From the example above, if you use the following:

    =COUNTIFS(B2:B11,"=0", C2:C11,"=0", D2:D11,"=0")

    it will count from the row only if all three meet the criteria

    however if you do:

    =COUNTIFS(B2:B11,">0", C2:C11,">0", D2:D11,">0")

    It will count from the row if any one, two, or all of the values is greater than 0

    q1: how is that logical?
    q2: How do I do the operation so that it counts only if all three satisfy the criteria

  44. help on how to set COUNTIF to count only cell with >=25% but <=29% only,, meaning count only cells when it contains 25% and below 30%

  45. I am trying to figure out a formal that would highlight a certain cell if a X appears a certain number of times within a certain data range. I am trying to work on an attendance sheet where i need the persons name to highlight if the attended 3 items in one data range and 2 in another data range and have data in another field that contains a drop drown list. I think i need to do a sum countif but I can't figure out how to set to highlight if a certain number within the data field is meet.

  46. I want to count how many nonzero cells exists. All cells are time formatted. I am populating with elapsed time.
    Column A - 0:00
    Column B - 8:05
    Column C - 9:22
    I should get result as 2.

  47. I am working with something like this:

    COLUMN A COLUMN B COL.C COL.D
    load# trailer# scac loc
    uc856489 85694 SXTI y182
    54852 SXTI y345
    uc854585 95484 TAMI y652
    45584524 6382 TAMI Y212
    54585 SXTI Y121
    UC845845 12548 JRWS Y222

    I'm trying to find a rule that will let me see if there is get a count of empty trailers on the yard by scac code "SXTI" (COL C) BUT I don't want to calculate the loaded SXTI trailers (WHEN COLUMN A SHOWS A 3 STARTING WITH UC* OR 455) I was going to make a line for each scac code on a different sheet with the rule cell next to it just showing the number. Is there a way that will work for this? I have tried many combinations but can't seem to get it to work.

  48. Hi,
    Can you please help?
    Example:
    - M M N N
    M V V D D
    M V V V
    N D V D E
    N V E E
    WE need do know how many "V" we have in the table with the conditions (Horizontal/Vertical) M/N ; M/N ; N/M ; N/M
    The result is:
    M/N = 1
    M/M = 4
    N/M = 2
    N/M = 0

    Many thanks in advance.

  49. =COUNTIFS(C12>F12,">=1", C21>F21,">=1") ???

    Basically looking to have a total for wins and losses in a sports results column.

    So if 71 (C12) is greater than 70 (F12) give it a value of 1 (a win), then add that to the next line (C21) if that is a value of 1 as well.

  50. I have 5 columns,
    1. Date In
    2. Time In
    3. Date Out
    4. Time Out
    5. Date to count
    I have a long list of these dates and times and want to find out by date and hour how many occurrences.

    7a-8a
    8a-9a
    9-10a etc.

    How do I assemble countifs to produce the hourly data?

    Countifs(A1:A31,E1,B1:B31,">="&TIMEVALUE("7:00 AM"),B1:B31,="&TIMEVALUE("7:00 AM"),D1:D31,<="&TIMEVALUE"("8:00 AM")

    I can't get to this to work so it shows between the in and out times and date.

    Thank you,
    Mike

Post a comment



Thank you for your comment!
When posting a question, please be very clear and concise. This will help us provide a quick and relevant solution to
your query. We cannot guarantee that we will answer every question, but we'll do our best :)