u/TacticalPidgeon

What in Your Opinion Is the Craziest Upgrade in Graphics for a Video Game Remake?

What in Your Opinion Is the Craziest Upgrade in Graphics for a Video Game Remake?

I don't even remember what I was originally looking for, but eventually stumbled onto Resident Evil 2 from 1998 being remade in 2019. Looking at the original and the new back-to-back is pretty wild when it comes to the updated graphics.

This got me thinking, what do you think was the most wild upgrade in graphics for a video game remake? It must be a direct remake that either follows the original story faithfully or has very little changed other than maybe the controls because it's on a new and different system. I'm sure there's some pretty crazy ones that may have been direct upgrades from the arcade days.

u/TacticalPidgeon — 1 day ago

Can Any of You Tell Me How High You Can Reach on a Wall If You're 5' 0" or Close to That?!

I'm so sorry to all of my short queens, but as a 6+ foot guy, I have a question that only you can answer. I'm currently putting up rods in my bathroom that will hold towels for my shower and hand washing and unfortunately the only mounting places are fairly high up. I'd like to put the rod at a height that can accommodate a shorter woman hanging it as I'm currently single and would like to make sure everything is good for the future and can deal with me dating someone of any height lol. So sorry if this sounds odd and ridiculous, but what's the best vertical you have without jumping. That's basically all I'm reaching out for.

reddit.com
u/TacticalPidgeon — 12 days ago
▲ 2 r/excel

I am trying to create something within my credit card SUMIFS() formula that would not include any transaction type labeled "Work" if a checkbox is selected as TRUE. This current formula works, but it's almost the same formulas twice that I would like to combine if possible. I put *** around the different lines of code in the second IF() formula from the first SUMIFS() formula.

=
  SUMIFS(
    [Amounts Column],
    [Statement Date Column],
    ">="&[Beginning of CC History],
    [Statement Date Column],
    "<="&[End of Current Month],
    [CC Name Column],
    [CC Name]
  )
  -IF(
    *** [CheckBox]=TRUE ***,
    SUMIFS(
      [Amounts Column],
      [Statement Date Column],
      *** ">="&[Beginning of Current Month] ***,
      [Statement Date Column],
      "<="&[End of Current Month],
      [CC Name Column],
      [CC Name]
      *** [Transaction Type Column], ***
      *** "Work" ***
    ),
    0
  )

The reason the first SUMIFS() starts at the beginning of my entire credit card history is that it includes the payments that are subtracted out. The reason the second SUMIFS() starts at just the beginning of the month is that I only want to subtract out everything labeled "Work" for just that month, otherwise it would do them since the beginning.

The [CC Name] is for multiple different credit cards. Elsewise I would have just subtracted the final "Work" totals from the credit card totals calculation, but I need them separated out.

Ultimately, I would like something like this...

=
  SUMIFS(
    [Amounts Column],
    [Statement Date Column],
    ">="&[Beginning of CC History],
    [Statement Date Column],
    "<="&[End of Current Month],
    [CC Name Column],
    [CC Name],
    *** [If checkbox is TRUE then don't include "Work" Values from the Month] ***
  )

I tried something like [Transaction Type Column], IF(Checkbox=TRUE,"<>"&Work but that just returns 0 if the checkbox is unchecked and some odd number that I can't quite figure out how it's being calculated when checked. Most other things I've tried just gave some sort of error. I don't know if combining these is actually possible with the way SUMIFS() is structured, but figured I'd ask here for those better at excel than me. Hopefully this makes sense and you all can follow what I'm asking and trying to do.

EDIT: Wanted to add that the setup that this is pulling from is as follows...

  • Column A: Credit Card Name
  • Column B: Transaction Amount/Value
  • Column C: Transaction Type
  • Column D: Statement Date
reddit.com
u/TacticalPidgeon — 21 days ago