Here is how it works:
The formula being:
=LEFT(C15,FIND("X",C15,1)-1)*RIGHT(C15,LEN(C15)-FIND("X",C15,1))
This part of the formula "FIND("X",C15,1)" looks for the position of the letter "X" within the cell's C15 text.
Then, "LEFT(C15,FIND("X",C15,1)-1)" takes the LEFT part of the cell's text and the length of characters extracted will be the position of the letter X minus 1 "FIND("X",C15,1)-1".
You then have "*" character which represent the multiplication.
And finally, we take the right part of the cell's text with "RIGHT(C15,LEN(C15)-FIND("X",C15,1))". Its length is the length of the whole text "LEN(C15)" minus the position of the letter X "FIND("X",C15,1)".
Hope this makes it clear for you.
Regards
Bookmarks