I have been down the rabbit hole for the past few hours on this one... Here is my predicament. I have a spreadsheet the Signs In/Out individuals via barcode scanner (Macro underneath to population times in columns to the right of name). The users of this spreadsheet would like for the name of individuals who have been "Out" for >1hour to highlight. Since individuals leave and return many times during the day, it would only apply to values in the "Out" columns with a blank "In" column to the right. I have imbedded the current time to use in the calculations in cell a cell on the spreadsheet. So, my latest attempt looked like this:
="IF((E27=0), =SUM((D237-D27)*24>1), =SUM((D237-D27)*24<1)" ***I have tried ISBLANK(E27) as well, and E27=""
Essentially IF(("Cell is Blank"), (True if this calculation), (False if this calculation))
I know that doesn't do it as the =SUM calculations should be further True/False statements I believe.
Below is a snip of the spreadsheet as it is now.
So, looking to highlight the name IF F2 is blank, AND the Sum of the Current Time minus E2 is>1hr
I feel like I am missing something here, I have tried SUMIF, COUNTIF, IF... so many variations and recombinations to get to this point.
Any help would be great- I have conditional formatting to identify relationships between the Out/In time >1 hour, but unable to figure out how to add the condition of a blank cell AND current time.
Thank you
Paul
="IF((E27=0), =SUM((D237-D27)*24>1), =SUM((D237-D27)*24<1)" ***I have tried ISBLANK(E27) as well, and E27=""
Essentially IF(("Cell is Blank"), (True if this calculation), (False if this calculation))
I know that doesn't do it as the =SUM calculations should be further True/False statements I believe.
Below is a snip of the spreadsheet as it is now.
Name | Out(1) | In(1) | Out(2) | In(2) | |
NAME | 7:02 | 7:28 | 8:36 | |
So, looking to highlight the name IF F2 is blank, AND the Sum of the Current Time minus E2 is>1hr
I feel like I am missing something here, I have tried SUMIF, COUNTIF, IF... so many variations and recombinations to get to this point.
Any help would be great- I have conditional formatting to identify relationships between the Out/In time >1 hour, but unable to figure out how to add the condition of a blank cell AND current time.
Thank you
Paul