Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations cowski on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Conversion of formula to userform or button

Status
Not open for further replies.

raviprakash369

Aerospace
Joined
Mar 25, 2015
Messages
49
Location
IN
Hi All,
I am Design engineer and very new to excel. Need some help for conversion of formula to userform or button for quick access.
Below are the formulae need to be converted.
For condition 1 :
1. Nominal value : LEFT(B2,FIND("±",B2)-1)
2. Upper Tolerance : SUBSTITUTE(B2,CONCATENATE(C2,"±"),"")
3. Lower Tolerance : SUBSTITUTE(B2,CONCATENATE(C2,"±"),"")

For condition 2 :
1. Nominal value : MID(B3,1,FIND("+",B3)-1)
2. Upper Tolerance : MID(B3,FIND("+",B3),FIND("-",B3)-FIND("+",B3))
3. Lower Tolerance : MID(B3,FIND("-",B3),LEN(B3)-(FIND("-",B3)-1))

For condition 3 :
1. Nominal value : MID(B4,1,FIND(CHAR(10),B4))
2. Upper Tolerance : MID(B4,FIND(CHAR(10),B4),LEN(B4)-FIND(CHAR(10),B4)+1)

If anyone know the solution please help me out.

Thanks in advance.

Regards,
Ravi
 
In VBA, to use a spreadsheet function just add Application.WorksheetFunction. in front of the function.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top