Calculating Currency with text

ExcelRoy

Well-known Member
Joined
Oct 2, 2006
Messages
2,540
Office Version
  1. 365
Platform
  1. Windows
Hi Guys,

Is it possible to calculate simple figures with text

ie

2.450m
2.125m
1.475m

to form a total of 6.050

Thanks
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Hi kpark91,

that works perfect, thanks

i have adapted to suit my needs, but it appears to be longer than it needs to be.
Is there a way to shorten the formula

="£" & LEFT(G11, 4)+0 + LEFT(G12, 4)+0 + LEFT(G13, 4)+0 +LEFT(G14, 4)+0 + LEFT(G15, 4)+0 + LEFT(G16, 4)+0+LEFT(G17, 4)+0 + LEFT(G18, 4)+0 + LEFT(G19, 4)+0+LEFT(G20, 4)+0 + LEFT(G21, 4)+0 &"m"

Thanks for your help
 
Upvote 0
Something like this?
Code:
=SUM(LEFT(G11:G21,4)+0)

Don't just enter the formula but enter with Ctrl + Shift + Enter
 
Upvote 0
Hi Guys,

Thanks for your help yesterday. I have found bot solutions work well

One minor problem, if for some reason we delete the criteria the calculation shows an #VALUE error

Is there a way to show no errors? Just "" would be fine

Thanks
 
Upvote 0
Hi Guys,

Thanks for your help yesterday. I have found bot solutions work well

One minor problem, if for some reason we delete the criteria the calculation shows an #VALUE error

Is there a way to show no errors? Just "" would be fine

Thanks

Care to elaborate on what you mean?
 
Upvote 0

Forum statistics

Threads
1,224,613
Messages
6,179,898
Members
452,948
Latest member
Dupuhini

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