Hello, I'm trying to correct the formula for column H. For example, in cell H13 I need this formula to only consider numbers and the point.
Notice that in H13 the result is "1.0A", when it should just be "1.0".
Also, in column H14, the result is "1.0 ", but it contains a space that can be noticed in F14, I would like the formula not to consider this space either, I think this could also be solved if only numbers and points were delivered.
Notice that in H13 the result is "1.0A", when it should just be "1.0".
Also, in column H14, the result is "1.0 ", but it contains a space that can be noticed in F14, I would like the formula not to consider this space either, I think this could also be solved if only numbers and points were delivered.
Pasta1.xlsm | |||||||
---|---|---|---|---|---|---|---|
E | F | G | H | I | |||
12 | Original name | New name | Extension | Name with dot and number only. After the first point, it should only contain 2 numbers | |||
13 | 1.0A.png | 1.0 .png | .png | 1.0A | |||
14 | 1.0 .png | 1.0 .png | .png | 1.0 | |||
Manter só gols e prioridade |
Cell Formulas | ||
---|---|---|
Range | Formula | |
F13 | F13 | =D2&""&C2 |
F14 | F14 | =H14&""&G14 |
H13:H14 | H13 | =LEFT(E13,FIND(".",E13))&MID(E13,FIND(".",A2)+1,2) |