No Idea What Function Or Formula Would Be Called?

Brad1m

New Member
Joined
Oct 16, 2010
Messages
23
Hi Guys:

Im trying to build a fairly basic calculator but I need to use 1 cell twice with 2
functions. Does that make any sense???

My problem lies in cell C8

Here are my formula's =SUM(D3/(A8*10)) This one is in C8
And this one uses C8 =SUM(C8*A8)*10 but is in D8

=SUM(D3/(A8*10)) gives me the amount of options contracts I can buy with the amount in D3

=SUM(C8*A8)*10 Should give me the total cost of that amount of contracts wich should be higher or lower than D3, but it just gives me the value of D3

Am I making any sense at all???

I dont know what function or formula I need to make =SUM(C8*A8)*10 only see the value in the cell instead of seemingly reading the formula?

I want it to read a number like 13 or 21 or something but it wont.

Can anyone help I've been at this all day and it's only a 1hr job "if that?" for someone who knows what they are doing.
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Can you provide an example of your worksheet - below doesn't make much sense.

As an FYI:
Code:
=SUM(C8*A8)*10)
Gives me the same value as:
Code:
=C8*A8*10
So I'm not sure why you're wrapping that inside a SUM function

Similarly for your first formula, you don't need the SUM part
 
Upvote 0
If C8 = D3/(A8*10)
then C8*A8*10 equals:
D3/(A8*10)*(A8*10) = D3

I don't really know what else you are expecting.
 
Upvote 0
In C8, one of

=ROUND(D3/(A8*10),0)
=ROUNDDOWN(D3/(A8*10),0)
=ROUNDUP(D3/(A8*10),0)

Changing the cells format doesn't automatically round the formula results.
 
Upvote 0
Thanks Jason, JackDanIce, Rorya


Jason: By removing the =Sum and the () this made the formula work.

JackDanIce: The ROUNDDOWN function fixed another problem I was having.

Rorya: your comment made me think a bit harder about what I was actually doing...

Thanks Guys, you got me straightened out.

I'm no genius that's for sure!
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,176
Members
451,543
Latest member
cesymcox

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