Assistance with a formula to display 18/16

pedro-egoli

Well-known Member
Joined
Apr 25, 2004
Messages
1,217
Office Version
  1. 2016
Platform
  1. Windows
Some assistance please.
In cell E6 is the number 1927 , and in cell e3 the number is 107.
In cell e16 the number is 16.86

What I want is a formula that will show in cell e35 the following
Code:
18/16.86

The formula I have tried is
Code:
=IF(ISBLANK(E3),"",text(E6/E3,"0.0")&" /"&text(e16),"0.0"))


However, I get the message "entered too few arguments"

Can someone tweak this formula using cell numbers please

Pedro
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Hi,

You have 1 too many ) -TEXT(E16),"0.0" should be TEXT(E16,"0.0"):

=IF(ISBLANK(E3),"",TEXT(E6/E3,"0.0")&" /"&TEXT(E16,"0.0"))

Not tested the above with data though, so it only fixes the "too few arguments" error. Let me know if it's what you want to see first, then we will work from there if it isn't..
 
Upvote 0

Forum statistics

Threads
1,224,552
Messages
6,179,484
Members
452,917
Latest member
MrsMSalt

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