234509/how-can-set-number-for-public-variable-at-userforms-in-excel
I write public X as integer and then X=2. But when I run it, there is an error. what do I write?
Public b as Integer b=2 Private Sub exa_Click() range("A" & 3)=b End Sub
I do not know what can I do
Try:
Public b As Integer Private Sub exa_Click() b = 2 Range("A" & 3) = b End Sub
Try this: Private Scan As Integer Private Sub CommandButton1_Click() ...READ MORE
In addition, INDEX MATCH is a more ...READ MORE
In Excel's formatting features, computations are not ...READ MORE
To do what you want is like ...READ MORE
This code should log you in, provided ...READ MORE
Currently, I don't think there is a ...READ MORE
The Excel AND function is a logical ...READ MORE
Hi so basically, create an adjacent column ...READ MORE
Use a # in your range references ...READ MORE
SourceFolder is an object that only understands ...READ MORE
OR
At least 1 upper-case and 1 lower-case letter
Minimum 8 characters and Maximum 50 characters
Already have an account? Sign in.