1 min readfrom Microsoft Excel | Help & Support with your Formula, Macro, and VBA problems | A Reddit Community

Trying to add value in specific cell while using two column requirements

Our take

Calculating the total credits for required classes can be challenging, especially when navigating multiple criteria. In this scenario, the aim is to sum credits for classes that meet specific conditions, such as being marked as "Passed" and required for the degree. The solution involves using the `SUMIFS` function, which allows you to specify multiple criteria without overwhelming complexity. By structuring your formula correctly, you can efficiently track your progress and ensure that your academic journey is accurately represented.

https://preview.redd.it/xd00fclycpqg1.png?width=1476&format=png&auto=webp&s=94e24bec094a62e46b8383d9d6d976e6434d64f3

Hi all, very new at this. I'm trying to calculate the amount of credits taken for each required class passed. I've tried some formulas along the lines of:

=COUNTIFS(Table1[Req for degree],"Y",Table1[Grade],"Passed", SUM(C:C))

but using the whole column usually just gets me adding up all the credits again.

I've been able to get the number of required classes /taken/ but trying to sum the amount of credits from each of those classes has been giving me trouble. I'm not even sure what to look up to solve this! I'm assuming I might need an XLOOKUP into a SUM?

Any help would be appreciated, thanks.

Edit:

Solved! Thanks guys! Ended up doing:
=SUMIFS(Table1[Credits],Table1[Grade],"Passed",Table1[Req for degree],"Y")

submitted by /u/thesummertowns
[link] [comments]

Read on the original site

Open the publisher's page for the full experience

View original article

Related Articles