OfficeUser
Well-known Member
- Joined
- Feb 4, 2010
- Messages
- 544
- Office Version
- 365
- 2016
- Platform
- Windows
I am trying to multiply 2 values on a userform using this line of vba:
I need to multply the value in lblChromeTotal by a textbox labeled txtPercentile.
I figured this would work but is giving me problems:
Any suggestions on making it work as intended? Thank You.
Code:
lblChromeTotal = Format((rFound.Offset(0, 3).Value), "0.00")
I need to multply the value in lblChromeTotal by a textbox labeled txtPercentile.
I figured this would work but is giving me problems:
Code:
lblChromeTotal = Format(((rFound.Offset(0, 3).Value) * txtPercentile.Value), "0.00")
Any suggestions on making it work as intended? Thank You.
Last edited: