[lnkForumImage]
TotalShareware - Download Free Software
Usa Forum
 Home | Login | Register | Search 


 

Forums >

rec.games.trading-cards.jyhad

Deck : Bernard's Baron Barreness

XZealot

8/19/2010 9:48:00 PM

Deck Name : Bernard's Baron Barreness
Author : Norman S. Brown Jr
Description :
This is a deck where you use Maleficia to play Barreness to lower a
vampires capacity so that you can burn him using Bernard's Bloodhunt


Crypt [8 vampires] Capacity min: 5 max: 6 average: 5.25
------------------------------------------------------------

3x Barbaro Lucchese 5 dai obf pre tha Baali:3
3x Bernard, the Scour 5 ani for pre pro Gangrel:4
1x Elihu 6 POT PRE dai for Baali:4
1x Maureen, Dark Prie 6 DAI PRE dom obf 1 vote Baali:4


Library [90 cards]
------------------------------------------------------------

Action [28]
16x Barrenness
6x Condemnation: Mute
1x Fee Stake: Boston
1x Fee Stake: Corte
1x Fee Stake: Los Angeles
1x Fee Stake: New York
1x Fee Stake: Perth
1x Fee Stake: Seattle

Action Modifier [24]
8x Bewitching Oration
8x Cloak the Gathering
8x Veil the Legions

Equipment [2]
2x Textbook Damnation, The

Master [25]
1x Backways
8x Maleficia
5x Path of Evil Revelations
5x Perfectionist
6x Villein

Political Action [7]
7x Kine Resources Contested

Reaction/Action Modifier [4]
4x Sense the Sin


Crafted with : Anarch Revolt Deck Builder. [Thu Aug 19 16:47:55 2010]
15 Answers

Sheeloo

4/11/2009 3:17:00 AM

0

You can achieve that by

=COUNTIFS(A2:A14,">=1152144",A2:A14,"<=1152555",B2:B14,"<=0.75")
or
=SUMPRODUCT(--(A2:A14 >= 1152144),--(A2:A14 <=1152555),--(B2:B14 <=0.75))

-------------------------------------
Pl. click ''Yes'' if this was helpful...



"farid2001" wrote:

> Hello Chip and Sheeloo
>
> This is what I am trying to accomplish:
>
> I have 2 columns, Column A has country codes, Column B has duration in
> minutes.
>
> ccodes durt
> 1151199 0.5
> 1151442 2.25
> 1152144 1.25
> 1152199 0.25
> 1154224 1
> 1152222 0.75
> 1152443 0.75
> 1156727 1.25
> 1157161 1.75
> 1152477 1
> 1152444 0.25
> 1152555 1.25
> 1158212 1.5
>
> I want to find how many entries had a duration of <= 0.75 on the codes that
> are between the values of 1152144 and 1152555
>
> Thanks & regards
> farid2001
>
>
> "Chip Pearson" wrote:
>
> >
> > Your code is rather confusing. Why are you doing an AND operation
> > between the difference of your CountIfs and another CountIfs?
> >
> > Perhaps if you described what you are trying to accomplish, someone
> > will post the appropriate code.
> >
> > If you want a simple CountBetween function, use something like
> >
> > Function CountBetween(Arr As Range, LowVal As Double, HighVal As
> > Double) As Variant
> > Dim L As Long
> > If LowVal > HighVal Then
> > CountBetween = CVErr(xlErrNum)
> > Exit Function
> > End If
> > If Arr Is Nothing Then
> > CountBetween = CVErr(xlErrRef)
> > Exit Function
> > End If
> > With Application.WorksheetFunction
> > L = .CountIf(Arr, "<=" & HighVal) - .CountIf(Arr, "<=" &
> > LowVal)
> > End With
> > CountBetween = L
> > End Function
> >
> > Adjust the "<=" comparison operators to "<" depending on whether you
> > want an inclusive or exclusive between. That is, if LowVal is 5, is 5
> > between LowVal and whatever HighVal might be?
> >
> > You can then call this from a cell with
> >
> > =CountBetween(A1:A10,5,8)
> >
> > Cordially,
> > Chip Pearson
> > Microsoft Most Valuable Professional
> > Excel Product Group, 1998 - 2009
> > Pearson Software Consulting, LLC
> > www.cpearson.com
> > (email on web site)
> >
> >
> >
> >
> > On Fri, 10 Apr 2009 12:45:01 -0700, farid2001
> > <farid2001@discussions.microsoft.com> wrote:
> >
> > >Dear Gentlemen
> > >
> > >I am trying to get the CountBetween function to work with CountIfs instead
> > >of CountIf, but I am getting nowhere.
> > >
> > >This is what I have:
> > >
> > >Function CountBetween1(InRange, num1, num2, InRange1, num3) As Integer
> > >
> > > With Application.WorksheetFunction
> > > If num1 <= num2 Then
> > > CountBetween1 = .CountIfs(InRange, ">=" & num1) -
> > >.CountIfs(InRange, ">" & num2) And .CountIfs(InRange1, ">=" & num3)
> > > Else
> > > CountBetween1 = .CountIfs(InRange, ">=" & num2) -
> > >.CountIfs(InRange, ">" & num1) And .CountIfs(InRange1, ">=" & num3)
> > > End If
> > > End With
> > >End Function
> > >
> > >Your help will be greatly appreciated.
> > >
> > >Regards
> > >farid2001
> >

farid2001

4/11/2009 3:50:00 AM

0

Thanks a lot, it worked perfectly!!

Regards
farid2001

"Sheeloo" wrote:

> You can achieve that by
>
> =COUNTIFS(A2:A14,">=1152144",A2:A14,"<=1152555",B2:B14,"<=0.75")
> or
> =SUMPRODUCT(--(A2:A14 >= 1152144),--(A2:A14 <=1152555),--(B2:B14 <=0.75))
>
> -------------------------------------
> Pl. click ''Yes'' if this was helpful...
>
>
>
> "farid2001" wrote:
>
> > Hello Chip and Sheeloo
> >
> > This is what I am trying to accomplish:
> >
> > I have 2 columns, Column A has country codes, Column B has duration in
> > minutes.
> >
> > ccodes durt
> > 1151199 0.5
> > 1151442 2.25
> > 1152144 1.25
> > 1152199 0.25
> > 1154224 1
> > 1152222 0.75
> > 1152443 0.75
> > 1156727 1.25
> > 1157161 1.75
> > 1152477 1
> > 1152444 0.25
> > 1152555 1.25
> > 1158212 1.5
> >
> > I want to find how many entries had a duration of <= 0.75 on the codes that
> > are between the values of 1152144 and 1152555
> >
> > Thanks & regards
> > farid2001
> >
> >
> > "Chip Pearson" wrote:
> >
> > >
> > > Your code is rather confusing. Why are you doing an AND operation
> > > between the difference of your CountIfs and another CountIfs?
> > >
> > > Perhaps if you described what you are trying to accomplish, someone
> > > will post the appropriate code.
> > >
> > > If you want a simple CountBetween function, use something like
> > >
> > > Function CountBetween(Arr As Range, LowVal As Double, HighVal As
> > > Double) As Variant
> > > Dim L As Long
> > > If LowVal > HighVal Then
> > > CountBetween = CVErr(xlErrNum)
> > > Exit Function
> > > End If
> > > If Arr Is Nothing Then
> > > CountBetween = CVErr(xlErrRef)
> > > Exit Function
> > > End If
> > > With Application.WorksheetFunction
> > > L = .CountIf(Arr, "<=" & HighVal) - .CountIf(Arr, "<=" &
> > > LowVal)
> > > End With
> > > CountBetween = L
> > > End Function
> > >
> > > Adjust the "<=" comparison operators to "<" depending on whether you
> > > want an inclusive or exclusive between. That is, if LowVal is 5, is 5
> > > between LowVal and whatever HighVal might be?
> > >
> > > You can then call this from a cell with
> > >
> > > =CountBetween(A1:A10,5,8)
> > >
> > > Cordially,
> > > Chip Pearson
> > > Microsoft Most Valuable Professional
> > > Excel Product Group, 1998 - 2009
> > > Pearson Software Consulting, LLC
> > > www.cpearson.com
> > > (email on web site)
> > >
> > >
> > >
> > >
> > > On Fri, 10 Apr 2009 12:45:01 -0700, farid2001
> > > <farid2001@discussions.microsoft.com> wrote:
> > >
> > > >Dear Gentlemen
> > > >
> > > >I am trying to get the CountBetween function to work with CountIfs instead
> > > >of CountIf, but I am getting nowhere.
> > > >
> > > >This is what I have:
> > > >
> > > >Function CountBetween1(InRange, num1, num2, InRange1, num3) As Integer
> > > >
> > > > With Application.WorksheetFunction
> > > > If num1 <= num2 Then
> > > > CountBetween1 = .CountIfs(InRange, ">=" & num1) -
> > > >.CountIfs(InRange, ">" & num2) And .CountIfs(InRange1, ">=" & num3)
> > > > Else
> > > > CountBetween1 = .CountIfs(InRange, ">=" & num2) -
> > > >.CountIfs(InRange, ">" & num1) And .CountIfs(InRange1, ">=" & num3)
> > > > End If
> > > > End With
> > > >End Function
> > > >
> > > >Your help will be greatly appreciated.
> > > >
> > > >Regards
> > > >farid2001
> > >

DeathInABottle

8/19/2010 10:10:00 PM

0

On Aug 19, 2:47 pm, XZealot <xzea...@cox.net> wrote:
> Deck Name : Bernard's Baron Barreness
> Author : Norman S. Brown Jr
> Description :
> This is a deck where you use Maleficia to play Barreness to lower a
> vampires capacity so that you can burn him using Bernard's Bloodhunt
>
> Crypt [8 vampires] Capacity min: 5 max: 6 average: 5.25
> ------------------------------------------------------------
>
> 3x Barbaro Lucchese       5  dai obf pre tha         Baali:3
> 3x Bernard, the Scour     5  ani for pre pro         Gangrel:4
> 1x Elihu                  6  POT PRE dai for         Baali:4
> 1x Maureen, Dark Prie     6  DAI PRE dom obf  1 vote Baali:4
>
> Library [90 cards]
> ------------------------------------------------------------
>
> Action [28]
>   16x Barrenness
>   6x Condemnation: Mute
>   1x Fee Stake: Boston
>   1x Fee Stake: Corte
>   1x Fee Stake: Los Angeles
>   1x Fee Stake: New York
>   1x Fee Stake: Perth
>   1x Fee Stake: Seattle
>
> Action Modifier [24]
>   8x Bewitching Oration
>   8x Cloak the Gathering
>   8x Veil the Legions
>
> Equipment [2]
>   2x Textbook Damnation, The
>
> Master [25]
>   1x Backways
>   8x Maleficia
>   5x Path of Evil Revelations
>   5x Perfectionist
>   6x Villein
>
> Political Action [7]
>   7x Kine Resources Contested
>
> Reaction/Action Modifier [4]
>   4x Sense the Sin
>
> Crafted with : Anarch Revolt Deck Builder. [Thu Aug 19 16:47:55 2010]

This seems like way too much work to set up a blood hunt referendum
that you'll have a hard time passing. Bernard needs to become
infernal; everyone needs to become an anarch and then a baron, get
Maleficia, and use Barrenness; and THEN Bernard can call a blood hunt
referendum which, under the right circumstances, will pass. Really?

XZealot

8/19/2010 10:42:00 PM

0

On Aug 19, 5:10 pm, DeathInABottle <li...@uvic.ca> wrote:
> On Aug 19, 2:47 pm, XZealot <xzea...@cox.net> wrote:
>
>
>
> > Deck Name : Bernard's Baron Barreness
> > Author : Norman S. Brown Jr
> > Description :
> > This is a deck where you use Maleficia to play Barreness to lower a
> > vampires capacity so that you can burn him using Bernard's Bloodhunt
>
> > Crypt [8 vampires] Capacity min: 5 max: 6 average: 5.25
> > ------------------------------------------------------------
>
> > 3x Barbaro Lucchese       5  dai obf pre tha         Baali:3
> > 3x Bernard, the Scour     5  ani for pre pro         Gangrel:4
> > 1x Elihu                  6  POT PRE dai for         Baali:4
> > 1x Maureen, Dark Prie     6  DAI PRE dom obf  1 vote Baali:4
>
> > Library [90 cards]
> > ------------------------------------------------------------
>
> > Action [28]
> >   16x Barrenness
> >   6x Condemnation: Mute
> >   1x Fee Stake: Boston
> >   1x Fee Stake: Corte
> >   1x Fee Stake: Los Angeles
> >   1x Fee Stake: New York
> >   1x Fee Stake: Perth
> >   1x Fee Stake: Seattle
>
> > Action Modifier [24]
> >   8x Bewitching Oration
> >   8x Cloak the Gathering
> >   8x Veil the Legions
>
> > Equipment [2]
> >   2x Textbook Damnation, The
>
> > Master [25]
> >   1x Backways
> >   8x Maleficia
> >   5x Path of Evil Revelations
> >   5x Perfectionist
> >   6x Villein
>
> > Political Action [7]
> >   7x Kine Resources Contested
>
> > Reaction/Action Modifier [4]
> >   4x Sense the Sin
>
> > Crafted with : Anarch Revolt Deck Builder. [Thu Aug 19 16:47:55 2010]
>
> This seems like way too much work to set up a blood hunt referendum
> that you'll have a hard time passing.  Bernard needs to become
> infernal; everyone needs to become an anarch and then a baron, get
> Maleficia, and use Barrenness; and THEN Bernard can call a blood hunt
> referendum which, under the right circumstances, will pass.  Really?

Why does Bernard have to become infernal? The other vampires are
infernal. They can get Maleficia to play the Barreness

XZealot

8/19/2010 10:44:00 PM

0

On Aug 19, 5:10 pm, DeathInABottle <li...@uvic.ca> wrote:
> On Aug 19, 2:47 pm, XZealot <xzea...@cox.net> wrote:
>
>
>
> > Deck Name : Bernard's Baron Barreness
> > Author : Norman S. Brown Jr
> > Description :
> > This is a deck where you use Maleficia to play Barreness to lower a
> > vampires capacity so that you can burn him using Bernard's Bloodhunt
>
> > Crypt [8 vampires] Capacity min: 5 max: 6 average: 5.25
> > ------------------------------------------------------------
>
> > 3x Barbaro Lucchese       5  dai obf pre tha         Baali:3
> > 3x Bernard, the Scour     5  ani for pre pro         Gangrel:4
> > 1x Elihu                  6  POT PRE dai for         Baali:4
> > 1x Maureen, Dark Prie     6  DAI PRE dom obf  1 vote Baali:4
>
> > Library [90 cards]
> > ------------------------------------------------------------
>
> > Action [28]
> >   16x Barrenness
> >   6x Condemnation: Mute
> >   1x Fee Stake: Boston
> >   1x Fee Stake: Corte
> >   1x Fee Stake: Los Angeles
> >   1x Fee Stake: New York
> >   1x Fee Stake: Perth
> >   1x Fee Stake: Seattle
>
> > Action Modifier [24]
> >   8x Bewitching Oration
> >   8x Cloak the Gathering
> >   8x Veil the Legions
>
> > Equipment [2]
> >   2x Textbook Damnation, The
>
> > Master [25]
> >   1x Backways
> >   8x Maleficia
> >   5x Path of Evil Revelations
> >   5x Perfectionist
> >   6x Villein
>
> > Political Action [7]
> >   7x Kine Resources Contested
>
> > Reaction/Action Modifier [4]
> >   4x Sense the Sin
>
> > Crafted with : Anarch Revolt Deck Builder. [Thu Aug 19 16:47:55 2010]
>
> This seems like way too much work to set up a blood hunt referendum
> that you'll have a hard time passing.  Bernard needs to become
> infernal; everyone needs to become an anarch and then a baron, get
> Maleficia, and use Barrenness; and THEN Bernard can call a blood hunt
> referendum which, under the right circumstances, will pass.  Really?

There are 4 Anarch Converts missing from the deck list as well

TorranceCircle

8/19/2010 10:58:00 PM

0


>
> This seems like way too much work to set up a blood hunt referendum
> that you'll have a hard time passing.  Bernard needs to become
> infernal; everyone needs to become an anarch and then a baron, get
> Maleficia, and use Barrenness; and THEN Bernard can call a blood hunt
> referendum which, under the right circumstances, will pass.  Really?- Hide quoted text -
>
> - Show quoted text -


It would be fun to play, but I don't think the plan is to win the EC
or NAC with it. ;) I think Norm likes crazy decks.

TorranceCircle

8/19/2010 11:01:00 PM

0

On Aug 19, 2:47 pm, XZealot <xzea...@cox.net> wrote:
> Deck Name : Bernard's Baron Barreness
> Author : Norman S. Brown Jr
> >
> Action [28]
>   16x Barrenness
>  


Some might say its a lot of work to pull this combo off. The most work
would be getting *sixteen* copies of barreness!

DeathInABottle

8/20/2010 12:01:00 AM

0

On Aug 19, 3:58 pm, TorranceCircle <torrance.cir...@gmail.com> wrote:
> > This seems like way too much work to set up a blood hunt referendum
> > that you'll have a hard time passing.  Bernard needs to become
> > infernal; everyone needs to become an anarch and then a baron, get
> > Maleficia, and use Barrenness; and THEN Bernard can call a blood hunt
> > referendum which, under the right circumstances, will pass.  Really?- Hide quoted text -
>
> > - Show quoted text -
>
> It would be fun to play, but I don't think the plan is to win the EC
> or NAC with it. ;) I think Norm likes crazy decks.

Sure, but even by the standards of crazy decks - which I love - this
seems implausible.

Nikolaj \"Lord of the Betrayers\" Wendt

8/20/2010 10:23:00 AM

0

On Aug 19, 11:47 pm, XZealot <xzea...@cox.net> wrote:
> Deck Name : Bernard's Baron Barreness
> Author : Norman S. Brown Jr
> Description :
> This is a deck where you use Maleficia to play Barreness to lower a
> vampires capacity so that you can burn him using Bernard's Bloodhunt
>
> Crypt [8 vampires] Capacity min: 5 max: 6 average: 5.25
> ------------------------------------------------------------
>
> 3x Barbaro Lucchese       5  dai obf pre tha         Baali:3
> 3x Bernard, the Scour     5  ani for pre pro         Gangrel:4
> 1x Elihu                  6  POT PRE dai for         Baali:4
> 1x Maureen, Dark Prie     6  DAI PRE dom obf  1 vote Baali:4
>
> Library [90 cards]
> ------------------------------------------------------------
>
> Action [28]
>   16x Barrenness
>   6x Condemnation: Mute
>   1x Fee Stake: Boston
>   1x Fee Stake: Corte
>   1x Fee Stake: Los Angeles
>   1x Fee Stake: New York
>   1x Fee Stake: Perth
>   1x Fee Stake: Seattle
>
> Action Modifier [24]
>   8x Bewitching Oration
>   8x Cloak the Gathering
>   8x Veil the Legions
>
> Equipment [2]
>   2x Textbook Damnation, The
>
> Master [25]
>   1x Backways
>   8x Maleficia
>   5x Path of Evil Revelations
>   5x Perfectionist
>   6x Villein
>
> Political Action [7]
>   7x Kine Resources Contested
>
> Reaction/Action Modifier [4]
>   4x Sense the Sin
>
> Crafted with : Anarch Revolt Deck Builder. [Thu Aug 19 16:47:55 2010]

I see your deck of vampire burning... and raise you with this deck of
vampire stealing.

Deck Name: Hordish Hostile Take Over
Created By: Nikolaj Wendt
Description: Barrennes to lower capacity, hostile take over the
barrennees, parity shifts to pay for infernalism + a few goodies.

Crypt: (12 cards, Min: 12, Max: 28, Avg: 4,83)
----------------------------------------------
3 Graham Gottesman obf pre tha DOM FOR7 Ventrue
6 Horde dai obf pre 3 Baali
1 Karen Suadela POT CEL pre obf7 Brujah
2 Victor Donaldson for pre DOM 6 Ventrue

Library: (75 cards)
-------------------
Master (18 cards)
1 Dreams of the Sphinx
5 Hostile Takeover
6 Maleficia
2 Presence
1 Uptown Hunting Ground
1 Ventrue Headquarters
2 Villein

Action (16 cards)
9 Barrenness
2 Condemnation: Mute
4 Legal Manipulations
1 Unleash Hell's Fury

Action Modifier (18 cards)
3 Bewitching Oration
2 Cloak the Gathering
2 Faceless Night
4 Forgotten Labyrinth
3 Perfect Paragon
2 Veil the Legions
2 Voter Captivation

Political Action (6 cards)
6 Parity Shift

Reaction (8 cards)
4 Deflection
4 Second Tradition: Domain, The

Combat (4 cards)
4 Majesty

Event (1 cards)
1 Anthelios, the Red Star

Combo (4 cards)
4 Evil Eye

This deck was last saved at 12:17:47 on 20-08-2010

XZealot

8/20/2010 1:07:00 PM

0

On Aug 20, 5:22 am, "Nikolaj \"Lord of the Betrayers\" Wendt"
<nikolajwe...@gmail.com> wrote:
> On Aug 19, 11:47 pm, XZealot <xzea...@cox.net> wrote:
>
>
>
> > Deck Name : Bernard's Baron Barreness
> > Author : Norman S. Brown Jr
> > Description :
> > This is a deck where you use Maleficia to play Barreness to lower a
> > vampires capacity so that you can burn him using Bernard's Bloodhunt
>
> > Crypt [8 vampires] Capacity min: 5 max: 6 average: 5.25
> > ------------------------------------------------------------
>
> > 3x Barbaro Lucchese       5  dai obf pre tha         Baali:3
> > 3x Bernard, the Scour     5  ani for pre pro         Gangrel:4
> > 1x Elihu                  6  POT PRE dai for         Baali:4
> > 1x Maureen, Dark Prie     6  DAI PRE dom obf  1 vote Baali:4
>
> > Library [90 cards]
> > ------------------------------------------------------------
>
> > Action [28]
> >   16x Barrenness
> >   6x Condemnation: Mute
> >   1x Fee Stake: Boston
> >   1x Fee Stake: Corte
> >   1x Fee Stake: Los Angeles
> >   1x Fee Stake: New York
> >   1x Fee Stake: Perth
> >   1x Fee Stake: Seattle
>
> > Action Modifier [24]
> >   8x Bewitching Oration
> >   8x Cloak the Gathering
> >   8x Veil the Legions
>
> > Equipment [2]
> >   2x Textbook Damnation, The
>
> > Master [25]
> >   1x Backways
> >   8x Maleficia
> >   5x Path of Evil Revelations
> >   5x Perfectionist
> >   6x Villein
>
> > Political Action [7]
> >   7x Kine Resources Contested
>
> > Reaction/Action Modifier [4]
> >   4x Sense the Sin
>
> > Crafted with : Anarch Revolt Deck Builder. [Thu Aug 19 16:47:55 2010]
>
> I see your deck of vampire burning... and raise you with this deck of
> vampire stealing.
>
> Deck Name:   Hordish Hostile Take Over
> Created By:    Nikolaj Wendt
> Description:    Barrennes to lower capacity, hostile take over the
> barrennees, parity shifts to pay for infernalism + a few goodies.

Good stuff! Barreness untaps you after you use it so you might not
even have to pay the infernal costs.