jns1087
New Member
- Joined
- May 3, 2020
- Messages
- 13
- Office Version
- 2016
- 2013
- 2011
- 2010
- 2007
- Platform
- Windows
Hi i have this data in Cell A1 that I'm trying to split which i cant use a delimiter due to its limits as far as i know.
A1
33000+5000+200*2
in B1 i made a formula that results into 33000
=VALUE(LEFT(A1,SEARCH("+",A1)-1))
in C1 i made a formula that extract the data 5000
=VALUE(MID(A1,SEARCH("+",A1)+1,SEARCH("+",A1,SEARCH("+",A1)+1)-SEARCH("+",A1)-1))
for the 3rd value of 200 i tried this way
in D1
=SEARCH("+",A1)
for E1
=SEARCH("+",A1,D1+1)
for F1 it gives me the result of 200*2, if i turn the data to 2200*2 the result gives 2200*2
=MID(A1,E1+1,E1-D1)
i just want the data in between of the 2nd + until * which is 200 or any data i input from A1, i cant have it work, appreciated any help
For the value of 2 since its always *2 i made using right for G1
=RIGHT(A1,1)
Thanks,
Jerwin
A1
33000+5000+200*2
in B1 i made a formula that results into 33000
=VALUE(LEFT(A1,SEARCH("+",A1)-1))
in C1 i made a formula that extract the data 5000
=VALUE(MID(A1,SEARCH("+",A1)+1,SEARCH("+",A1,SEARCH("+",A1)+1)-SEARCH("+",A1)-1))
for the 3rd value of 200 i tried this way
in D1
=SEARCH("+",A1)
for E1
=SEARCH("+",A1,D1+1)
for F1 it gives me the result of 200*2, if i turn the data to 2200*2 the result gives 2200*2
=MID(A1,E1+1,E1-D1)
i just want the data in between of the 2nd + until * which is 200 or any data i input from A1, i cant have it work, appreciated any help
For the value of 2 since its always *2 i made using right for G1
=RIGHT(A1,1)
Thanks,
Jerwin
Last edited: