Cant get Excel formula to work

Ibonic

New Member
Joined
Jun 19, 2011
Messages
30
Hi all, I'm new to excel and having problems making the following code work, any help would be greatly appreciated
Thank you
=IF(A14="30 minute (200sf)",=ROUNDUP((C5+C6)/(180),0),"")<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p>
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
Hello & Welcome to the Board,

It looks like you just have an equal sign in the middle when not needed.

=IF(A14="30 minute (200sf)",=ROUNDUP((C5+C6)/(180),0),"")

=IF(A14="30 minute (200sf)",ROUNDUP((C5+C6)/(180),0),"")
 
Upvote 0
Welcome to the board.

Try:
Code:
=IF(A14="30 minute (200sf)",ROUNDUP((C5+C6)/180,0),"")
 
Upvote 0
Welcome to the board.

Try:
Code:
=IF(A14="30 minute (200sf)",ROUNDUP((C5+C6)/180,0),"")


First thanks for the welcome, and it works, lol, i can't believe it, I thought i tried that, but must of messed something up, thank you for you help its much appreciated
 
Upvote 0

Forum statistics

Threads
1,224,578
Messages
6,179,650
Members
452,934
Latest member
mm1t1

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