Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

Need special formula for data entry

Status
Not open for further replies.

raviprakash369

Aerospace
Mar 25, 2015
49
0
0
IN
Hi,
please find the below image and do the needful to create special formula.
special_rg5gxg.jpg

Thanks in advance.

Regards,
Ravi
 
Replies continue below

Recommended for you

"if homework, why should I post"

This site averages 2 student posts per week, because that's what some students would rather do.

Excel has string handling functions such as Left, Mid, Right for parsing strings. You can use the Find function to look for the ± character.

TTFN (ta ta for now)
I can do absolutely anything. I'm an expert! faq731-376 forum1529 Entire Forum list
 
I often use custom formatting rather than concatenation - it keeps the cell contents to numeric values that can be used elsewhere.
 
You posted thread770-420991, very similar. No resolution there???

What have you tried
in either of these two threads?

What works or does not work?

Often if you explain what you tried and what results you observed, it can be helpful.

BTW, images are great for admiring. But if you want help, a worksheet is required. I won't waste my time trying to transcribe your picture.

Skip,
[sub]
[glasses]Just traded in my OLD subtlety...
for a NUance![tongue][/sub]
 
Yes, just native Excel functions like, LEFT(), RIGHT(), FIND(), LEN()

For instance, just to get you started, Nominal could be...
[tt]
=--LEFT($A2,FIND("±",$A2)-1)
[/tt]
...where A2 is the source cell.

Skip,
[sub]
[glasses]Just traded in my OLD subtlety...
for a NUance![tongue][/sub]
 
Thank you Skipvought, I got some formula for the same.
=LEFT(B13,FIND("±",B13)-1)


=SUBSTITUTE(B13,CONCATENATE(C13,"±"),"")

Thank you very much all for your support.

Regards,
Ravi
 
But I feel sorry for you, so here's a solution using Named Ranges.
[pre]
Display Nominal Plus tol Minus tol max value min value

20±0.01 20 0.01 -0.01 20.01 19.99
[/pre]

[tt]
Nominal: =--LEFT(Display,FIND("±",Display)-1)
Plus tol: =--RIGHT(Display,LEN(Display)-FIND("±",Display))
Minus tol: =-RIGHT(Display,LEN(Display)-FIND("±",Display))
max value: =Nominal+Plus_tol
min value: =Nominal+Minus_tol
[/tt]


Skip,
[sub]
[glasses]Just traded in my OLD subtlety...
for a NUance![tongue][/sub]
 
He's just asking about THIS one thing.

The other stuff is multiple cells, and I have no idea how the requirement will be stated. He's all over the place.

Skip,
[sub]
[glasses]Just traded in my OLD subtlety...
for a NUance![tongue][/sub]
 
Hi SkipVought,
As I am Design engineer and very new to excel, took the help of this forum.
Thanks for the support and I got solution.
I will continue the next plan converting these formulae to userform by help of colleagues here.
Once again thank you very much eng-tips and supporters.

Regards,
Ravi.
 
Status
Not open for further replies.
Back
Top