Why not row is summing after the separating join text

Kishan

Well-known Member
Joined
Mar 15, 2011
Messages
1,648
Office Version
  1. 2010
Platform
  1. Windows
Using Excel 2000</SPAN></SPAN>

Hi,</SPAN></SPAN>

I got 2 columns B & C in these columns there is a join text I want separate them in columns E, F, G, H for that I am using the formula below the problem is that if i want to sum rows E:H why I am getting 0? Please need help</SPAN></SPAN>


Book1
ABCDEFGHIJKL
1
2
3
4
5CDCCDDSum
61|12|111210
71|12|111210
81|12|111210
91|1X|211X20
101|11|X111X0
111|1X|211X20
121|11|211120
132|2X|222X20
142|2X|222X20
151|1X|X11XX0
161|X2|X1X2X0
17X|X2|XXX2X0
18
19
Sheet1
Cell Formulas
RangeFormula
E6=LEFT(B6,1)
F6=RIGHT(B6,1)
G6=LEFT(C6,1)
H6=RIGHT(C6,1)
J6=SUM(E6:H6)


Thank you in advance</SPAN></SPAN>

Regards,</SPAN>
Kishan</SPAN>
 
Last edited:

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
Both LEFT & RIGHT (along with MID) will return a string value, rather than a number
Try
=IF(ISERROR(LEFT(C6,1)*1),LEFT(C6,1),LEFT(C6,1)*1)
 
Last edited:
Upvote 0
Both LEFT & RIGHT (along with MID) will return a string value, rather than a number
Try
=IF(ISERROR(LEFT(C6,1)*1),LEFT(C6,1),LEFT(C6,1)*1)
Thank you Fluff, yes your formula did the trick, now I am getting the sum of each row perfectly</SPAN></SPAN>

Kind Regards,
</SPAN>
Kishan
</SPAN></SPAN>
 
Last edited:
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,214,891
Messages
6,122,101
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