Forum Discussion
MikeKlausing
6 years agoQrew Assistant Captain
Here is the formula I used:
([Total Kicker Count (1-10)]*[Kicker - Total]) -Min(If([Kicker cost 1st]>0,[Kicker cost 1st],0),
If([Kicker Cost 2nd]>0,[Kicker Cost 2nd],0),
If([Kicker Cost 3rd]>0,[Kicker Cost 3rd],0),
If([Kicker Cost 4th]>0,[Kicker Cost 4th],0),
If([Kicker Cost 5th]>0,[Kicker Cost 5th],0),
If([Kicker Cost 6th]>0,[Kicker Cost 6th],0),
If([Kicker Cost 7th]>0,[Kicker Cost 7th],0),
If([Kicker Cost 8th]>0,[Kicker Cost 8th],0),
If([Kicker Cost 9th]>0,[Kicker Cost 9th],0),
If([Kicker Cost 10th]>0,[Kicker Cost 10th],0))
This still gives me the full cost and isnt subtracting the minimum cost
------------------------------
Mike Klausing
------------------------------
([Total Kicker Count (1-10)]*[Kicker - Total]) -Min(If([Kicker cost 1st]>0,[Kicker cost 1st],0),
If([Kicker Cost 2nd]>0,[Kicker Cost 2nd],0),
If([Kicker Cost 3rd]>0,[Kicker Cost 3rd],0),
If([Kicker Cost 4th]>0,[Kicker Cost 4th],0),
If([Kicker Cost 5th]>0,[Kicker Cost 5th],0),
If([Kicker Cost 6th]>0,[Kicker Cost 6th],0),
If([Kicker Cost 7th]>0,[Kicker Cost 7th],0),
If([Kicker Cost 8th]>0,[Kicker Cost 8th],0),
If([Kicker Cost 9th]>0,[Kicker Cost 9th],0),
If([Kicker Cost 10th]>0,[Kicker Cost 10th],0))
This still gives me the full cost and isnt subtracting the minimum cost
------------------------------
Mike Klausing
------------------------------
AdamKeever1
6 years agoQrew Commander
Use this Mike:
This works on all of the scenarios I have tested so far...
------------------------------
Adam Keever
------------------------------
Sum([Kicker cost 1st],[Kicker Cost 2nd],[Kicker Cost 3rd],[Kicker Cost 4th],[Kicker Cost 5th],[Kicker Cost 6th],[Kicker Cost 7th],[Kicker Cost 8th],[Kicker Cost 9th],[Kicker Cost 10th])- Min(If([Kicker cost 1st]>0,[Kicker cost 1st],null), If([Kicker Cost 2nd]>0,[Kicker Cost 2nd],null), If([Kicker Cost 3rd]>0,[Kicker Cost 3rd],null), If([Kicker Cost 4th]>0,[Kicker Cost 4th],null), If([Kicker Cost 5th]>0,[Kicker Cost 5th],null), If([Kicker Cost 6th]>0,[Kicker Cost 6th],null), If([Kicker Cost 7th]>0,[Kicker Cost 7th],null), If([Kicker Cost 8th]>0,[Kicker Cost 8th],null), If([Kicker Cost 9th]>0,[Kicker Cost 9th],null), If([Kicker Cost 10th]>0,[Kicker Cost 10th],null))ā
This works on all of the scenarios I have tested so far...
------------------------------
Adam Keever
------------------------------
- MikeKlausing6 years agoQrew Assistant Captain
Adam,
Thank you! That is working great for me now.
Thank you,
Mike Klausing
------Original Message------
Use this Mike:
Sum([Kicker cost 1st],[Kicker Cost 2nd],[Kicker Cost 3rd],[Kicker Cost 4th],[Kicker Cost 5th],[Kicker Cost 6th],[Kicker Cost 7th],[Kicker Cost 8th],[Kicker Cost 9th],[Kicker Cost 10th])- Min(If([Kicker cost 1st]>0,[Kicker cost 1st],null), If([Kicker Cost 2nd]>0,[Kicker Cost 2nd],null), If([Kicker Cost 3rd]>0,[Kicker Cost 3rd],null), If([Kicker Cost 4th]>0,[Kicker Cost 4th],null), If([Kicker Cost 5th]>0,[Kicker Cost 5th],null), If([Kicker Cost 6th]>0,[Kicker Cost 6th],null), If([Kicker Cost 7th]>0,[Kicker Cost 7th],null), If([Kicker Cost 8th]>0,[Kicker Cost 8th],null), If([Kicker Cost 9th]>0,[Kicker Cost 9th],null), If([Kicker Cost 10th]>0,[Kicker Cost 10th],null))ā
This works on all of the scenarios I have tested so far...
------------------------------
Adam Keever
------------------------------