Thread Rating:
  • 5 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Fire Clan IOU Multicalc
#52
So recently I found on the card sheet for Next Milestone.

Say you have 500 cards, it'd say the next milestone would be 250 instead of 1000. And I was reminded by GameInSky about the bug if you had 0 cards, which is the same bug because you have 0 cards.


Cards Column O


=if(index($R$3:$R$14,match(M3,$R$3:$R$14))-M3=0, offset(index($R$3:$R$14,match(M3,$R$3:$R$14)),-1,0)-M3, offset(index($R$3:$R$14,match(N3,$S$3:$S$14)),1,0)-M3)


Current code checks if it's on a milestone and then makes a special case for it. But the problem was the -1 offset. It should really be Offset +1. Then you realize that the true and false statements are doing the same thing. It look likes the false is doing something difference by referencing something else for the match but it really does the same thing.


=offset(index($R$3:$R$14,match(M3,$R$3:$R$14)),1,0)-M3

So the formula can actually just be simplified to this.

It also means the P column can be fixed up since I don't think there's a case where column O is 0.

From =if(O3=0,"", if(O3>$D$9,"",O3-$D$9))

To =if(O3>$D$9,"",O3-$D$9)

So while this gets fixed there's some improvements that can be made.

* Sometimes a card pack can be used to get through multiple tiers. The calculator currently would say that the card pack is really inefficient for getting through 1 tier.


To implement number 1. In the P column instead of just subtraction you could add the cards, then do index match to find milestone then subtract to see how much you go over.

From =if(O3>$D$9,"",O3-$D$9))

=if(O3>$D$9,"",index($R$3:$R$14,match(M3+$D$9,$R$3:$R$14))-M3-$D$9)
A leader of Fire Clan
Reply


Messages In This Thread
Fire Clan IOU Multicalc - GameInSky - 07-29-2016, 08:30 PM
RE: Gameinsky's modified IOU Multicalc - jiecut - 08-17-2016, 08:16 AM
RE: Fire Clan IOU Multicalc - GameInSky - 01-27-2018, 02:48 AM
RE: Fire Clan IOU Multicalc - quixorbl - 01-28-2018, 02:39 AM
RE: Fire Clan IOU Multicalc - Level - 01-28-2018, 08:45 PM
RE: Fire Clan IOU Multicalc - quixorbl - 02-22-2018, 06:21 PM
RE: Fire Clan IOU Multicalc - porkbob - 02-23-2018, 06:17 AM
RE: Fire Clan IOU Multicalc - damador - 02-22-2018, 10:19 PM
RE: Fire Clan IOU Multicalc - porkbob - 02-23-2018, 06:16 AM
RE: Fire Clan IOU Multicalc - damador - 02-23-2018, 07:02 AM
RE: Fire Clan IOU Multicalc - porkbob - 02-23-2018, 12:05 PM
RE: Fire Clan IOU Multicalc - porkbob - 02-24-2018, 02:14 AM
RE: Fire Clan IOU Multicalc - damador - 02-26-2018, 12:08 AM
RE: Fire Clan IOU Multicalc - porkbob - 02-26-2018, 04:17 AM
RE: Fire Clan IOU Multicalc - quixorbl - 03-12-2018, 06:08 PM
RE: Fire Clan IOU Multicalc - porkbob - 03-13-2018, 07:53 AM
RE: Fire Clan IOU Multicalc - jiecut - 04-03-2018, 02:54 AM
RE: Fire Clan IOU Multicalc - quixorbl - 04-15-2018, 03:32 AM
RE: Fire Clan IOU Multicalc - porkbob - 04-20-2018, 09:40 AM
RE: Fire Clan IOU Multicalc - porkbob - 05-14-2018, 11:25 AM
RE: Fire Clan IOU Multicalc - porkbob - 05-17-2018, 01:07 AM
RE: Fire Clan IOU Multicalc - damador - 05-17-2018, 06:43 PM
RE: Fire Clan IOU Multicalc - jiecut - 05-25-2018, 06:08 AM
RE: Fire Clan IOU Multicalc - TyhmaAave - 05-29-2018, 08:12 AM
RE: Fire Clan IOU Multicalc - jiecut - 05-29-2018, 12:40 PM
RE: Fire Clan IOU Multicalc - GameInSky - 06-01-2018, 12:29 AM
RE: Fire Clan IOU Multicalc - Hazard - 07-28-2018, 11:03 PM
RE: Fire Clan IOU Multicalc - Batch - 10-24-2018, 10:54 PM
RE: Fire Clan IOU Multicalc - porkbob - 02-04-2019, 04:41 AM
RE: Fire Clan IOU Multicalc - GameInSky - 02-04-2019, 05:05 AM

Forum Jump:


Users browsing this thread: 3 Guest(s)