Time is stored in Excel as a fraction of a day, so 12:00:00 is 0.5 days. If you
multiply a time by 24, you will get decimal hours. So, the following should
work:
=if(a3>0.5,1,a3*24)
Format as number, or general.
--
Regards,
Fred
"Programmer Wannabe" <Programmer Wan...@discussions.microsoft.com> wrote in
message news:AC915ABB-109D-4E53...@microsoft.com...
=IF(ISNUMBER(A3),IF(A3>0.5,"1 Business Day",A3*24),"")
Biff
"Programmer Wannabe" <Programmer Wan...@discussions.microsoft.com> wrote in
message news:AC915ABB-109D-4E53...@microsoft.com...