Does anyone knows any formula to extract the number with separation (dot, comma) from cell A1
to cell B1
?
Example, I want to extract 2,590.00
from cell A1
which has the following value:
[sum: 2,590.00]
I got the formula below that works nice, however is just getting all numbers e.g. 259000
{=TEXTJOIN("",TRUE,IFERROR((MID(A1,ROW(INDIRECT("1:"&LEN(A1))),1)*1),""))}
I appreciate every support