Multiplying two numbers in a cell

Tysaroni

New Member
Joined
Mar 23, 2024
Messages
2
Office Version
  1. 365
Platform
  1. Windows
I know this might seem simple but I am a novice in Excel. I have a cell (C5) that reads as follows:

8.5” x 25.75”

How do I multiply these numbers and get that quantity into cell H5?

Thank you!
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
Hi

=PRODUCT(INDEX(--TEXTSPLIT(C5,"""","x"),,1))
 
Upvote 0
Solution
How about

Excel Formula:
=VALUE(LEFT(C5, SEARCH("”", C5) - 1)) * VALUE(MID(C5, SEARCH("x", C5) + 2, SEARCH("”", C5, SEARCH("x", C5)) - SEARCH("x", C5) - 2))
 
Upvote 0
@Tysaroni In future please mark the post that contains the solution, rather than your post saying it works. I have changed it for you. Thanks
 
Upvote 0
.. or probably even
Excel Formula:
=PRODUCT(-TEXTSPLIT(C5,{" ","x",""""},,1))
 
Upvote 0
Trying to learn something from this, but I couldn't get any of those solutions to work.

Book2
CDEF
58.5” x 25.75”#VALUE!#VALUE!#VALUE!
Sheet1
Cell Formulas
RangeFormula
D5D5=PRODUCT(INDEX(--TEXTSPLIT(C5,"""","x"),,1))
E5E5=PRODUCT(--TEXTSPLIT(C5,{" ","x",""""},,1))
F5F5=PRODUCT(-TEXTSPLIT(C5,{" ","x",""""},,1))
 
Upvote 0
Never mind, it's the smart quotes when copying the value from this page.
 
Upvote 0

Forum statistics

Threads
1,215,203
Messages
6,123,627
Members
449,109
Latest member
Sebas8956

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top