Hello - new to Excel and learning formula for 1/2/3

MallyH

New Member
Joined
Mar 13, 2022
Messages
10
Office Version
  1. 2021
Platform
  1. Windows
Hello,

I am looking for a formula that will perform some maths after a third /. So for example on one cell I have 1/2/3 or x/y/z and on another column I need a formula which will sh x/y/z(*2).

Any help appreciated and sorry if it seems simple, as I am new to excel. :)
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
What exactly do you have in the first cell? Do you have some formula that results in a number like
Excel Formula:
=1/2/3
and displays 0.166667? Or do you have a string of text that looks like "1/2/3"?

If the first formula results in a number then the formula is

=A1*2

But that seems so simple, even if you are new to Excel, it is probably not your question. Please be more explicit about 1) What is in the first cell, and 2) what result you want in the second cell. Concrete examples are very helpful.
 
Upvote 0
What exactly do you have in the first cell? Do you have some formula that results in a number like
Excel Formula:
=1/2/3
and displays 0.166667? Or do you have a string of text that looks like "1/2/3"?

If the first formula results in a number then the formula is

=A1*2

But that seems so simple, even if you are new to Excel, it is probably not your question. Please be more explicit about 1) What is in the first cell, and 2) what result you want in the second cell. Concrete examples are very helpful.
Hi thanks for the reply. In the first cell I have 1/2/3 but in the call I need the formula , I need to times the 3 by 2. So it should result in 1/2/6.

Sorry for the poor example
 
Upvote 0
Hi,

You should give at least a handful of samples.
Assuming those are Text strings.
If your data is Always single digits, (e.g. #/#/#), it could be much simpler.

Book3.xlsx
ABCDE
1Variable digitsSingle digits
21/22/331/22/661/2/31/2/6
311/234/9911/234/1987/8/67/8/12
Sheet1041
Cell Formulas
RangeFormula
B2:B3B2=LEFT(A2,FIND("/",A2,FIND("/",A2)+1))&REPLACE(A2,1,FIND("/",A2,FIND("/",A2)+1),"")*2
E2:E3E2=LEFT(D2,4)&RIGHT(D2)*2
 
Upvote 0
Solution
Perfect - Thankyou and yes I see your point in requesting better examples which I will do I. Future
 
Upvote 0
You're welcome, thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,830
Messages
6,121,839
Members
449,051
Latest member
excelquestion515

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