why doesn't vba have a min/max function?

Have you seen what MARK858 said in post#9?
7 thousandths of a second is not very slow IMO
 
Upvote 0

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Does anyone know why the worksheet function: dd = WorksheetFunction.mod(45, 10)

does not work?
 
Upvote 0
VBA already has a Mod operator, so there is no WorksheetFunction equivalent. Note though that VBA Mod and the MOD function don't work the same way with negative numbers.
 
Upvote 0
It is an operator, not a function, so the syntax is:

Code:
GRADE = 45 MOD 10
 
Upvote 0
Never mind!

GRADE = 45 mod 10 works
If you wanted to use the worksheet's MOD function (as Rory pointed out, it works differently than VB's Mod operator), you could do so via the Evaluate function...

dd = Evaluate("MOD(45,10)")

Note that since the argument to the Evaluate function is a text string, you can concatenate text constants and variables together in order to make the call to the MOD function more dynamic. For example,

Number = 45
Divisor = 10
dd = Evaluate("MOD(" & Number & "," & Divisor & ")")
 
Upvote 0

Forum statistics

Threads
1,215,694
Messages
6,126,250
Members
449,305
Latest member
Dalyb2

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