Formula for Pick 4 and Pick 5 workout.

MrsFrankieH

Active Member
Joined
Mar 25, 2011
Messages
323
Office Version
  1. 365
Platform
  1. Windows
Hello,

I'm using Windows 7 and Excel 2010. Could you please help me (show me how) to write formulas for these workouts? My workout starts a bit further down the page, i hope that's ok.http://





Thank you very very very much! :)

Frankie

P.S.- This is my first "link" post.
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
Doing this one step at a time since there is a lot of it. For the odd/even stuff you could use:

=IF(EVEN(A1)=A1,A1,"")
=IF(ODD(A1)=A1,A1,"")

Hope this helps.
 
Upvote 0
Hello Buxtongt!!!

Thank you for helping me!! I'll start with this first. I appreciate your help!! :)

Frankie
 
Upvote 0
For the repeaters, use:

=IF(OR(A1=A2,A1=B2,A1=C2,A1=D2),A1,"")

You can use something very similiar (except you compare it to the same row, not the row below) for the doubles, triples and quads.
 
Upvote 0
For the sequentials you can use:

=IF(OR(B1+1=C1,B1-1=C1,B1+1=A1,B1-1=A1),B1,"") for the middle 2 columns, the 2 on the end will just have to be compared to the one next to them.

I think I need a little clarification on what you want for the leap frog columns.
 
Upvote 0
Thank you buxtongt!! :D

I just did the "odds" and "Evens" and they worked like a charm!! Thank you!! :)

Now i will try the Repeaters and then the sequentials.

I'll keep you updated with my progress.

Thank you again. :)
 
Upvote 0
Thank you buxtongt!! :D

I just did the "odds" and "Evens" and they worked like a charm!! Thank you!! :)

Now i will try the Repeaters and then the sequentials.

I'll keep you updated with my progress.

Thank you again. :)
 
Upvote 0
The 'Leap Frog' is a term used when a number increases or decreases in the next draw. For example; if the last draw was 2-0-1 and the current draw is 3-1-5


2 0 1
3 1 5

The number 3 decreases by 1 in the next draw (2)
The number 1 decreases by 0 in the next draw (0)



If possible could you color increases and decreases like shown? Note: "9" is greater than "0"

I'll keep you updated with my progress.

Thank you again. :))
 
Upvote 0
Something along the lines of:

=IF(OR(A2-1=A1,A2+1=A1),A2,"")

should work for the leap frog stuff, based on what I think you want it to show. For the colors you will need to use conditional formatting. Hope this helps.
 
Upvote 0
All formulas go in the top left of their respective sections and can be copied across and down:
Vtracs:
Code:
=IF(R88="","",--RIGHT(R88+5,1))
Odd:
Code:
=IF(ISODD(R88),R88,"")
Even:
Code:
=IF(R88="","",IF(ISEVEN(R88),R88,""))
Repeaters:
Code:
=IF(R88="","",IF(OR(COUNTIF($R87:$U87,R88)>0,COUNTIF($R89:$U89,R88)>0),R88,""))
Leap Frog (couldn't figure out your formatting):
Code:
=IF(R88="","",IF(OR(ISNUMBER(MATCH(--RIGHT(9+R88,1),$R87:$U87,0)),ISNUMBER(MATCH(--RIGHT(11+R88,1),$R87:$U87,0)),ISNUMBER(MATCH(--RIGHT(9+R88,1),$R89:$U89,0)),ISNUMBER(MATCH(--RIGHT(11+R88,1),$R89:$U89,0))),R88,""))
Sequentials:
Code:
=IF(R88="","",IF(OR(ISNUMBER(MATCH(--RIGHT(9+R88,1),$R88:$U88,0)),ISNUMBER(MATCH(--RIGHT(11+R88,1),$R88:$U88,0))),R88,""))
Doubles:
Code:
=IF(COUNTIF($R88:$U88,R88)=2,R88,"")
Triples:
Code:
=IF(COUNTIF($R88:$U88,R88)=3,R88,"")
Quadruples:
Code:
=IF(COUNTIF($R88:$U88,R88)=4,R88,"")
 
Upvote 0

Forum statistics

Threads
1,216,084
Messages
6,128,726
Members
449,465
Latest member
TAKLAM

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