Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I need to sum column B (dollars) and column C (cents) if column A equals a
certain charcter (example W) per each row. For a basic total without the column A stipulation I created the following formulas to total column B and C together (this is because I display the dollars and cents as whole numbers) =SUM(D5:D56)+INT(SUM(E5:E56)/100) for dollars (column B total) =MOD(SUM(E5:E56)/100,1)*100 for cents (column C total) |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You can just replace the SUMs with SUMIFs; instead of sum(D5:D56) use
sumif(a5:a56,"W",d5:d56). "Eric" wrote: I need to sum column B (dollars) and column C (cents) if column A equals a certain charcter (example W) per each row. For a basic total without the column A stipulation I created the following formulas to total column B and C together (this is because I display the dollars and cents as whole numbers) =SUM(D5:D56)+INT(SUM(E5:E56)/100) for dollars (column B total) =MOD(SUM(E5:E56)/100,1)*100 for cents (column C total) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Simple Question Complicated Formula | Excel Worksheet Functions | |||
IF question complicated | Excel Discussion (Misc queries) | |||
Complicated FV Question | Excel Worksheet Functions | |||
Complicated question... | Excel Worksheet Functions | |||
complicated sum formula question | Excel Worksheet Functions |