Chartered Accountant - Product Manager
553 Points
Joined September 2007
You can use combined formula to break these items. i assume that you have the data in this format
Your Data Structure
| Befor Split |
After Split |
| Cell value (A1) |
Text (B1) |
Amount (C1) |
| Fixed Assets 50,00,000 |
Fixed Assests |
50,00,000 |
| Current Assets 25,00,000 |
Current Assets |
25,00,000 |
Assume that you have value in A column.
Step 1:
Go to B1 and enter this formula
=LEFT(A1, LEN(A1)-LEN(RIGHT(A1,LEN(A1)-FIND("#",SUBSTITUTE(A1," ","#",LEN(A1)-LEN(SUBSTITUTE(A1," ","")))))))
Step 2:
Go to C1 and enter this formula
=RIGHT(A1,LEN(A1)-FIND("#",SUBSTITUTE(A1," ","#",LEN(A1)-LEN(SUBSTITUTE(A1," ","")))))
Note: There should not be any space in the amount.