ChetanPuri
Board Regular
- Joined
- Sep 5, 2018
- Messages
- 80
- Office Version
- 365
- Platform
- Windows
Good Morning Excel Gurus,
Is there a formula, that I am able split data in the below format for example Value in P2 if its in format R2402/104/PR, then it splits in T2, U 2 and V2 , even though I put the formula in Col;umn S2 as I want any number, for example 40719240 to appear in S2 and if its not a number or is it with Delimiter should be split in column T,U and V. Any help would be appreciated
Is there a formula, that I am able split data in the below format for example Value in P2 if its in format R2402/104/PR, then it splits in T2, U 2 and V2 , even though I put the formula in Col;umn S2 as I want any number, for example 40719240 to appear in S2 and if its not a number or is it with Delimiter should be split in column T,U and V. Any help would be appreciated
V4 Telstra Download 2024-11-21.xlsm | |||||||||
---|---|---|---|---|---|---|---|---|---|
P | Q | R | S | T | U | V | |||
1 | GL Code | SPLIT | Tex Split | ||||||
2 | R2402/104/PR | 53 | R2402 | 104 | PR | ||||
3 | D100/130/MT | 33 | D100 | 130 | MT | ||||
4 | D100/130/MT | 66 | D100 | 130 | MT | ||||
5 | D100/160/MT | 66 | D100 | 160 | MT | ||||
6 | D100/160/MT | 61 | D100 | 160 | MT | ||||
7 | D100/140/MT | 33 | D100 | 140 | MT | ||||
8 | C241/0800/PR | 53 | C241 | 0800 | PR | ||||
9 | C241/0800/PR | 53 | C241 | 0800 | PR | ||||
10 | C242/0800/PR | 14.5 | C242 | 0800 | PR | ||||
11 | C241/0800/PR | 14.5 | C241 | 0800 | PR | ||||
12 | C241/0800/PR | 53 | C241 | 0800 | PR | ||||
13 | C241/0800/PR | 50 | C241 | 0800 | PR | ||||
14 | C241/0800/PR | 62.99 | C241 | 0800 | PR | ||||
15 | 40719240 | 53 | 40719240 | ||||||
16 | 10119240 | 70 | 10119240 | ||||||
17 | 11229392 | 354.99 | 11229392 | ||||||
18 | 10119240 | 70 | 10119240 | ||||||
19 | 40719240 | 135 | 40719240 | ||||||
20 | 40739710 | 165 | 40739710 | ||||||
21 | DN04B/0800/PR | 85 | DN04B | 0800 | PR | ||||
Detail Report |
Cell Formulas | ||
---|---|---|
Range | Formula | |
T15:T21 | T15 | =IFERROR(MID(P15,FIND("/",P15)+1,FIND("/",P15,FIND("/",P15)+1)-FIND("/",P15)-1),"") |
U15:U21 | U15 | =IFERROR(MID(P15,FIND("/",P15,FIND("/",P15)+1)+1,LEN(P15)),"") |
Q2:Q21 | Q2 | =O2*A2 |
S21 | S21 | =IFERROR(VALUE(P21),MID(P21,1,FIND("/",P21&"/")-1)) |