Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

~24.8K People Reached
Favorite Forums
Favorite Tags

3 Posted Topics

Member Avatar for vegaseat

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 …

Member Avatar for amir_19
3
24K
Member Avatar for kungfujam

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 …

Member Avatar for SpiritualMadMan
0
221
Member Avatar for kungfujam

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 …

Member Avatar for kungfujam
0
119

The End.