Do not count if date not entered
Solved/Closed
Gouws
Posts
45
Registration date
Sunday February 7, 2010
Status
Member
Last seen
April 15, 2012
-
Jul 28, 2010 at 07:50 AM
Gouws Posts 45 Registration date Sunday February 7, 2010 Status Member Last seen April 15, 2012 - Aug 5, 2010 at 01:55 AM
Gouws Posts 45 Registration date Sunday February 7, 2010 Status Member Last seen April 15, 2012 - Aug 5, 2010 at 01:55 AM
Related:
- Do not count if date not entered
- How to count names in excel - Guide
- How do i enter @ on laptop - Guide
- We couldn't find an account matching the login info you entered - Facebook Forum
- Facebook login without any info(advanced recovery solution) NO INFO AT ALL ✓ - Facebook Forum
- We couldn't find an account matching the login info you entered, but found an account that closely matches based on your login history. - Facebook Forum
3 responses
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
Jul 28, 2010 at 09:29 AM
Jul 28, 2010 at 09:29 AM
try this
=IF(OR(C3="", C4="", C4=0), "" , (((C3-C4)-I3)+1)*24)
basically saying that if c3="" or c4= "" or c4=0, then show a ""
of all three conditions are false, then show the result of formula
=IF(OR(C3="", C4="", C4=0), "" , (((C3-C4)-I3)+1)*24)
basically saying that if c3="" or c4= "" or c4=0, then show a ""
of all three conditions are false, then show the result of formula
ellendms
Posts
4
Registration date
Wednesday July 28, 2010
Status
Member
Last seen
July 29, 2010
Jul 28, 2010 at 08:28 AM
Jul 28, 2010 at 08:28 AM
Rizvisa gave a much better solution below, this one could serve as an (less good!) alternative...
Not sure whether this is the best solution, but the way I solve this is by entering my formula in a cell of a column that I hide.
So in C5 I would then have: =IF(C4>0,H3,"") with H3 the cell in which I wrote the formula =((C3-C4)-I3)+1)*24
Hope this helps...
Not sure whether this is the best solution, but the way I solve this is by entering my formula in a cell of a column that I hide.
So in C5 I would then have: =IF(C4>0,H3,"") with H3 the cell in which I wrote the formula =((C3-C4)-I3)+1)*24
Hope this helps...
Gouws
Posts
45
Registration date
Sunday February 7, 2010
Status
Member
Last seen
April 15, 2012
Aug 5, 2010 at 01:55 AM
Aug 5, 2010 at 01:55 AM
TX guys it helped me!