In Userform Textbox Formula to be typed and the same to be seen in Excel sheet Formula Bar

NimishK

Well-known Member
Joined
Sep 4, 2015
Messages
684
Hello
in cell A1 = when typed the following =(300+500)*5/10 i get result as 400 in cell A1


Will it be possible to implement the same in userform Textbox so that when i type the same in the userform textbox =(300+500)*5/100 but the result of value 400 is displayed in Cell A1 and formula also seen as =(300+500)*5/10 in formula Bar of Worksheet

will i have to use the same as per below link
http://www.excelfox.com/forum/showthread.php/2165-Formula-Editor-Bar-in-UserForm-TextBox

Thanks
NimishK
 
Last edited:

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
Actually if you type =(300+500)*5/10 in the textbox and run this code

Code:
Sheets("Sheet1").Range("A1").Value = TextBox1.Text

it will get you what you want.
 
Upvote 0
Thanks Akuini
2 Questions on above. Yes i get the formula in Formula bar when entered in Textbox and Value of 400 in A1. Perfect

1. How to Display Value as 400 in Textbox2.text ie reading the value of A1 in textbox2 and not the formula. Only 400 to be displayed in Textbox2
2. How to get Excel sheet msg Error if error ocurrs when typo error or any wrong input of formula in textbox1 to enter formula.

Thankx NimishK
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,622
Messages
6,120,580
Members
448,972
Latest member
Shantanu2024

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