What exactly is 'MrExcel MVP' and 'Board Regular'?

I bowed my head beacuse I knew I that I'd been beat, and I layed that golden keyboard on the ground at Truby's feet. :wink:

Owen
 

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
Code:
Enum mrxlHelpLevels
    xlNewbie
    xlBoardRegular
    xlNotInept
    xlGettingThere
    xlOneGoldStar
    xlCanTellButtFromHoleInGround
    xlTwoWeeStars
    xlActuallyHelpful
    xlQuiteHelpful
    xlVeryHelpful
    xlAladin = 99
End Enum

...
    If Not Intersect(Range("MrExcelMessageBoard"), Range("HandsomeExcelGods")) Is Nothing _
    Or Me.Helpfulness >= mrxlHelpLevels.xlVeryHelpful Then
       Me.BoardRanking = mrxlRankings.xlMVP
       
       collMrExcelMVPs.Add Item:=Me.Name, Key:=Me.BoardID
    
    End If

Methinks that the test for intersection by itself is meaningless under these circumstances. I would expect that you would need to determine if YOU are actually in that intersection... After all, there is probably an intersection, but even if there is, it doesn't help much if you aren't in it.

I would start here:
Code:
Enum mrxlHelpLevels
    xlNewbie
    xlBoardRegular
    xlNotInept
    xlGettingThere
    xlOneGoldStar
    xlCanTellButtFromHoleInGround
    xlTwoWeeStars
    xlActuallyHelpful
    xlQuiteHelpful
    xlVeryHelpful
    xlAladin = 99
End Enum

...

    On Error Resume Next
    
    Set InterSected = Intersect(Range("MrExcelMessageBoard"), Range("HandsomeExcelGods"))
    
    On Error GoTo 0

    Flag = False

    If Not InterSected Is Nothing Then
        
        If Not InterSected.Find(Me.Name, LookIn:=xlValues) Is Nothing Then Flag = True
    
    ElseIf Me.Helpfulness >= mrxlHelpLevels.xlVeryHelpful Then
    
        Flag = True
        
    End If
    
    If Flag Then
    
       Me.BoardRanking = mrxlRankings.xlMVP
       
       collMrExcelMVPs.Add Item:=Me.Name, Key:=Me.BoardID
    
    End If

The rest is left up to the student to prove ad nauseum using any unambiguous language of his/her choice, except ProLog (it is no longer supported Professor.Net). :unsure:
 
I like that one "Gold star" is ranked below "Can Tell Butt From Hole In Ground" :ROFLMAO:
 
ExcelingInTheAirForce
I bowed my head beacuse I knew I that I'd been beat, and I layed that golden keyboard on the ground at Truby's feet.

Don't encourage him, for pete's sake...that's the last thing we need ;)
 
Actually, I rather liked Paul's point that the test really should have been a FIND for one's own name against the initial intersection; a very astute point, I thought. :biggrin:
 
ExcelingInTheAirForce
I bowed my head beacuse I knew I that I'd been beat, and I layed that golden keyboard on the ground at Truby's feet.

Don't encourage him, for pete's sake...that's the last thing we need ;)

... I would have cast Greg as Satan rather than Johnny
 
Actually, I rather liked Paul's point that the test really should have been a FIND for one's own name against the initial intersection; a very astute point, I thought. :biggrin:

(y)

Thank you. Does that qualify me for xlCanTellButtFromHoleInGround rather than just xlOneGoldStar?
 
Not that it helped me get my MVP moniker here, but the girls in the women's dormitory did award me the "best legs in the men's dorm" title three out of four years in college. :p (Lost my senior year to a German tennis player. :cry:)


"There was a young man named Greg
Who had great pride in his legs;
With both a wax and a groom
He thought it a boon
To tell everyone he knew of his pegs!"
 
So, I believe the code now needs...
Code:
blnGetsFiddleAndSatanJokes = (not intersect([EuropeanMrExcelMembers],[CountryMusicFans]) is nothing)

Regards,
:devilish:
 
...With both a wax...

WAX?! :eek: Oh, h*** no! (Well, not unless that and I wig would have gotten me an overnight in the girls dorm). :devilish:

@ hatman -- yep, consider yerself promoted to and added to the collCanFindOwnAssWithoutMapAndCompass collection.
 

Forum statistics

Threads
1,216,518
Messages
6,131,121
Members
449,624
Latest member
MandlaMan

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