Join text with numeric values that have division

ozbeachbum

Board Regular
Joined
Jun 3, 2015
Messages
159
Office Version
  1. 2021
Platform
  1. Windows
Hi,
I am endeavouring to combine text with numeric values that have addition and division.
The following formula works with the addition,

=IF(D66>0,"03 $"&TEXT('Exp Pay Est'!AA86+'Exp Pay Est'!AA88,"000.00"),IF(D62+D64>0,"02 $"&TEXT('Exp Pay Est'!AA86+'Exp Pay Est'!AA88,"000.00"),""))

but when I add the division,

=IF(D66>0,"03 $"&TEXT('Exp Pay Est'!AA86+'Exp Pay Est'!AA88)/3,"000.00"),IF(D62+D64>0,"02 $"&TEXT('Exp Pay Est'!AA86+'Exp Pay Est'!AA88)/2,"000.00"),""))

I receive an error message, To Few Arguments.
I have tried numerous bracketing options but have had no success.
Any assistance would be greatly appreciated.
Cheers,
Dave.
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
Try adding an additional "(" after both ocurrences of TEXT
Excel Formula:
=IF(D66>0,"03 $"&TEXT(('Exp Pay Est'!AA86+'Exp Pay Est'!AA88)/3,"000.00"),IF(D62+D64>0,"02 $"&TEXT(('Exp Pay Est'!AA86+'Exp Pay Est'!AA88)/2,"000.00"),""))
 
Upvote 0
Solution
What are you trying to divide by the 3 or the 2... the entire summation or the last term in the summation? If the entire summation, then Alex is correct, you have to add an opening parenthesis after each TEXT function name to balance the parenthesis you included in front of your division sign (the slash). If, on the other hand, you are only trying to divide the last term of the summation, just omit the parenthesis in front of the division signs.
 
Upvote 0
Try adding an additional "(" after both ocurrences of TEXT
Excel Formula:
=IF(D66>0,"03 $"&TEXT(('Exp Pay Est'!AA86+'Exp Pay Est'!AA88)/3,"000.00"),IF(D62+D64>0,"02 $"&TEXT(('Exp Pay Est'!AA86+'Exp Pay Est'!AA88)/2,"000.00"),""))
Thank you greatly appreciated.
 
Upvote 0

Forum statistics

Threads
1,214,897
Messages
6,122,141
Members
449,066
Latest member
Andyg666

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