No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
this works fine returning true if prime and false with the smallest number that divides it if it is false. [code=python]def isprime(x): x = abs(int(x)) if x < 2: return "Less 2", False elif x == 2: return True elif x % 2 == 0: return False else: for n …
The below bit of code is running very very slowly. I cant see why this should be but there seems to be almost a second delay when I'm using f8 to run through the code bit by bit when I get to the end if...any clues? [code] Sub firstResponse() Dim …
Completely stumped as to why my code will no longer run. It definitely works as I can call it from another Sub but will not run on its own. When I am in the code editing window (in Excel) and I click the run button or f5 it asks me …
The End.
kungfujam