Forum Discussion
Wim_Coenen
Dec 21, 2022Copper Contributor
Programming in visual basic
Good day, I want to use the function combinations in a program. However, get an error, #value A data type in the formula would be wrong. I used the following source code. Public Function N...
- Dec 21, 2022
Make sure that a is greater than or equal to b.
=Nob(5, 2) should work - or if you use comma as decimal separator, =Nob(5; 2)
But =Nob(2, 5) will return #VALUE!
HansVogelaar
Dec 21, 2022MVP
Make sure that a is greater than or equal to b.
=Nob(5, 2) should work - or if you use comma as decimal separator, =Nob(5; 2)
But =Nob(2, 5) will return #VALUE!