The Percentage(%) sign doesn't work in VB

Mesbahullah13

New Member
Joined
Mar 14, 2023
Messages
1
Office Version
  1. 365
Platform
  1. Windows
I'm trying to add Percentage to my Calculator in VB but the Percentage(%) sign doesn't work it keeps saying "Character is not valid"

Heres my code

Public Class Form1
Private Sub btnPercentage_Click(sender As Object, e As EventArgs) Handles btnPercentage.Click
Dim iNumber1 As Integer
Dim iNumber2 As Integer
Dim iAns As Integer

'input
iNumber1 = txtNumber1.Text
iNumber2 = txtNumber2.Text

'processing
iAns = iNumber1 % iNumber2

'output
txtAnswer.Text = iAns
End Sub
End Class
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
You can't use percent signs in VBA like that. Please see Type Characters - Visual Basic for further details.

I would suggest modifying your code like this:

VBA Code:
iAns = iNumber1/iNumber2

txtAnswer.Text = VBA.Format(iAns,"00%")
 
Upvote 0

Forum statistics

Threads
1,223,313
Messages
6,171,385
Members
452,397
Latest member
ddneptune

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