How to validate textbox entry format

drynka

New Member
Joined
Oct 24, 2018
Messages
3
dear Excel Experts,

I have a userform which retrieves the data from the excel database
Code:
UF_Contracting.REV = Format(Sheets("A").Range("Data_Start").Offset(TargetRaw, 64).Value, "Percent")

in the REV textbox user can change it
and then changed data are uploaded into the same excel database again.

Second code:
Code:
 Sheets("A").Range("Data_Start").Offset(TargetRaw, 64).Value = Replace(UF_Contracting.REV, "%", "") / 100

I would like to validate the data entry format, so users can enter only commas as decimal separator only, only as %, so 0,75% (not 0.75% and not 0.75)

I also want to avoid empty text box or if it's empty it should be changed to 0 with the second code.

How can I limit / validate the textbox entry?

Should I validate every single textbox? how should I do it?

Thank you in advance for your kind advice
E.
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.

Forum statistics

Threads
1,225,749
Messages
6,186,802
Members
453,373
Latest member
Ereha

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