Forum Discussion
Excel
Aug 03, 2022Iron Contributor
Query related to VBA code
Hello Everyone, I am trying to work with input variable and using msgbox- if the information is correct-> then there should be no "Please re-enter your PURCHASED ORDER number" Please help.. ...
- Aug 03, 2022
Give a try on below sub
Public Sub Information() ReEnter: ' Create inputbox, and (2) asssign value returned by inputbox function to variable myInputBoxVariable = InputBox(prompt:="Please enter your PO number", Title:="PO Number") ' Display message box with value held by varaible If IsNumeric(myInputBoxVariable) Then MsgBox " Your PO number is: " & myInputBoxVariable Else GoTo Incorrect End If ' If error, check with the PO value again On Error GoTo Incorrect Exit Sub Incorrect: MsgBox "Please re-enter your PO number" GoTo ReEnter End Sub
Harun24HR
Aug 03, 2022Bronze Contributor
Give a try on below sub
Public Sub Information()
ReEnter:
' Create inputbox, and (2) asssign value returned by inputbox function to variable
myInputBoxVariable = InputBox(prompt:="Please enter your PO number", Title:="PO Number")
' Display message box with value held by varaible
If IsNumeric(myInputBoxVariable) Then
MsgBox " Your PO number is: " & myInputBoxVariable
Else
GoTo Incorrect
End If
' If error, check with the PO value again
On Error GoTo Incorrect
Exit Sub
Incorrect: MsgBox "Please re-enter your PO number"
GoTo ReEnter
End Sub
- ExcelSep 09, 2022Iron Contributor
Hello Sir,
I have a very small question that :
In below screnshot, When i have checked the EVALUATE FORMULA command, Why the multiplication is performed first rather than parenthesis/bracket ?
Here is a screenshot :
Please help..??
- HansVogelaarSep 09, 2022MVP
The first operator is + but that is deferred because the next operator * has a higher priority.
The operators / * and - after that first * do not have a higher priority, so that * is evaluated first.
Then the / is evaluated.
Before the second * is evaluated, the expression in parentheses is evaluated. Then the *.
Finally, the + from the beginning, and the last - are evaluated.
- ExcelSep 09, 2022Iron ContributorSir what about the Parenthesis...According to PEDMAS Parenthesis comes first and then all remaining operators...Why (4-2) is not performed first?
- ExcelAug 03, 2022Iron ContributorThank you so much sir