Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default Can you create a dual formula?

Is it possible to create a cell with 2 different formulas? I need to subtract
one cell from another as well as to multiply a cell by a number. Example:
=SUM(D30-D29) and C28*1.5 and have the results combine in the one cell.
Please advise.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,268
Default Can you create a dual formula?

Do you mean combine as 2 different results with text in-between?

=D30-D29&" and "&C28*1.5

You might need the text function as well if you need formats like dates or
currency etc

--
Regards,

Peo Sjoblom


"Cryla" wrote in message
...
Is it possible to create a cell with 2 different formulas? I need to
subtract
one cell from another as well as to multiply a cell by a number. Example:
=SUM(D30-D29) and C28*1.5 and have the results combine in the one cell.
Please advise.



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4,624
Default Can you create a dual formula?

What do you mean by "combine"?

You could display both results:

=D30-D29 & " " & C28*1.5

Note that the SUM() in your formula isn't necessary.

Note also that the result will be Text, rather than a number.

In article ,
Cryla wrote:

Is it possible to create a cell with 2 different formulas? I need to subtract
one cell from another as well as to multiply a cell by a number. Example:
=SUM(D30-D29) and C28*1.5 and have the results combine in the one cell.
Please advise.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 964
Default Can you create a dual formula?

When you say "combine", do you mean show both results side by side? Or add
them together? Also, the use of the SUM function is redundant in your
example, since you're not adding the result of D30-D29 to anything.

Here's a couple options:

To add the results together:
=D30-D29+(C28*1.5)

To show both results side-by-side:
=D30-D29&" "&C28*1.5

HTH,
Elkar


"Cryla" wrote:

Is it possible to create a cell with 2 different formulas? I need to subtract
one cell from another as well as to multiply a cell by a number. Example:
=SUM(D30-D29) and C28*1.5 and have the results combine in the one cell.
Please advise.

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 4,339
Default Can you create a dual formula?

Is the result to be:

=(D30-D29)+C28*1.5

????

no need to use SUM

"Cryla" wrote:

Is it possible to create a cell with 2 different formulas? I need to subtract
one cell from another as well as to multiply a cell by a number. Example:
=SUM(D30-D29) and C28*1.5 and have the results combine in the one cell.
Please advise.



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default Can you create a dual formula?

This didn't work either but I figured out what I needed to do...thank you!

"Elkar" wrote:

When you say "combine", do you mean show both results side by side? Or add
them together? Also, the use of the SUM function is redundant in your
example, since you're not adding the result of D30-D29 to anything.

Here's a couple options:

To add the results together:
=D30-D29+(C28*1.5)

To show both results side-by-side:
=D30-D29&" "&C28*1.5

HTH,
Elkar


"Cryla" wrote:

Is it possible to create a cell with 2 different formulas? I need to subtract
one cell from another as well as to multiply a cell by a number. Example:
=SUM(D30-D29) and C28*1.5 and have the results combine in the one cell.
Please advise.

  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default Can you create a dual formula?

This didn't work either but I figured out what I needed to do...thank you!

"Toppers" wrote:

Is the result to be:

=(D30-D29)+C28*1.5

????

no need to use SUM

"Cryla" wrote:

Is it possible to create a cell with 2 different formulas? I need to subtract
one cell from another as well as to multiply a cell by a number. Example:
=SUM(D30-D29) and C28*1.5 and have the results combine in the one cell.
Please advise.

  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default Can you create a dual formula?

This didn't work either but I figured out what I needed to do...thank you!

"Peo Sjoblom" wrote:

Do you mean combine as 2 different results with text in-between?

=D30-D29&" and "&C28*1.5

You might need the text function as well if you need formats like dates or
currency etc

--
Regards,

Peo Sjoblom


"Cryla" wrote in message
...
Is it possible to create a cell with 2 different formulas? I need to
subtract
one cell from another as well as to multiply a cell by a number. Example:
=SUM(D30-D29) and C28*1.5 and have the results combine in the one cell.
Please advise.




  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 5
Default Can you create a dual formula?

This didn't work either but I figured out what I needed to do...thank you!

"JE McGimpsey" wrote:

What do you mean by "combine"?

You could display both results:

=D30-D29 & " " & C28*1.5

Note that the SUM() in your formula isn't necessary.

Note also that the result will be Text, rather than a number.

In article ,
Cryla wrote:

Is it possible to create a cell with 2 different formulas? I need to subtract
one cell from another as well as to multiply a cell by a number. Example:
=SUM(D30-D29) and C28*1.5 and have the results combine in the one cell.
Please advise.


  #10   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,268
Default Can you create a dual formula?

Can you share with us what worked since all of us seem to have misunderstood
you?

--
Regards,

Peo Sjoblom

"Cryla" wrote in message
...
This didn't work either but I figured out what I needed to do...thank you!

"Peo Sjoblom" wrote:

Do you mean combine as 2 different results with text in-between?

=D30-D29&" and "&C28*1.5

You might need the text function as well if you need formats like dates
or
currency etc

--
Regards,

Peo Sjoblom


"Cryla" wrote in message
...
Is it possible to create a cell with 2 different formulas? I need to
subtract
one cell from another as well as to multiply a cell by a number.
Example:
=SUM(D30-D29) and C28*1.5 and have the results combine in the one cell.
Please advise.






Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
need to create a formula to create a timesheet but haven't a clue AHurd Excel Discussion (Misc queries) 7 August 22nd 05 12:04 PM
Dual Screens Scott@PRM Excel Discussion (Misc queries) 4 August 3rd 05 01:30 AM
How do I create a dual axes column chart in Excel Alok Charts and Charting in Excel 1 May 17th 05 06:11 PM
="Z" dual use? Scott Calkins via OfficeKB.com Excel Worksheet Functions 5 May 5th 05 01:30 PM
How do you create dual drop down menus in excel 2000? Phlashh Excel Discussion (Misc queries) 1 January 11th 05 08:56 PM


All times are GMT +1. The time now is 09:26 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"