Formula shows hrs and min

asyamonique

Well-known Member
Joined
Jan 29, 2008
Messages
1,286
Office Version
  1. 2013
Platform
  1. Windows
Hello All,
How can I avoid that formula shows "0hrs 0min" if there is nothing on cell CY3?
Excel Formula:
=IF(SUM(CY3)>=0,"","-")&INT(ABS(SUM(CY3))/60)&"hrs "&MINUTE(ABS(SUM(CY3))/1440)&"min"
Thanks
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
How about
Excel Formula:
=IF(CY3=0,"",INT(ABS(SUM(CY3))/60)&"hrs "&MINUTE(ABS(SUM(CY3))/1440)&"min")
 
Upvote 0
Why are you using SUM(CY3) instead of just CY3?
 
Upvote 0
Why are you using SUM(CY3) instead of just CY3?
Actualy I was using for CN3:CY3 datas which exported as minutes, bu no longer using that ranges so I've just placed as CY3 only.
Now on CY3 I have another formula
Excel Formula:
=IFERROR(VLOOKUP(CA3,AW:BS,22,0),"")
Any suggestions?
 
Upvote 0
In that case how about
Excel Formula:
=IF(CY3="","",INT(ABS(SUM(CY3))/60)&"hrs "&MINUTE(ABS(SUM(CY3))/1440)&"min")
 
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,324
Members
452,635
Latest member
laura12345

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top