Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I need to be able to track data on a rolling 12 month cycle. For instance,
how much money has been brought in from exactly 1 year ago from todays date?, Tomorrow, same question. My date is in Column B and the data that needs added together is in Column G. If the date in Column B is within the last 364 days from the current date I need the numbers in the corresponding Column G to add together and give me a sum at a glance. Can anyone tell me if this is possible and how to write the formula to get the info that I need? Thanks |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=SUMPRODUCT(--(B2:B200=TODAY()-364),--(B2:B200<=TODAY()),G2:G200)
-- --- HTH Bob (change the xxxx to gmail if mailing direct) "Lisa" wrote in message ... I need to be able to track data on a rolling 12 month cycle. For instance, how much money has been brought in from exactly 1 year ago from todays date?, Tomorrow, same question. My date is in Column B and the data that needs added together is in Column G. If the date in Column B is within the last 364 days from the current date I need the numbers in the corresponding Column G to add together and give me a sum at a glance. Can anyone tell me if this is possible and how to write the formula to get the info that I need? Thanks |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this:
=SUMIF(B:B,"="&TODAY()-364,G:G) Biff "Lisa" wrote in message ... I need to be able to track data on a rolling 12 month cycle. For instance, how much money has been brought in from exactly 1 year ago from todays date?, Tomorrow, same question. My date is in Column B and the data that needs added together is in Column G. If the date in Column B is within the last 364 days from the current date I need the numbers in the corresponding Column G to add together and give me a sum at a glance. Can anyone tell me if this is possible and how to write the formula to get the info that I need? Thanks |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
It works perfectly. Thank you!!
"Bob Phillips" wrote: =SUMPRODUCT(--(B2:B200=TODAY()-364),--(B2:B200<=TODAY()),G2:G200) -- --- HTH Bob (change the xxxx to gmail if mailing direct) "Lisa" wrote in message ... I need to be able to track data on a rolling 12 month cycle. For instance, how much money has been brought in from exactly 1 year ago from todays date?, Tomorrow, same question. My date is in Column B and the data that needs added together is in Column G. If the date in Column B is within the last 364 days from the current date I need the numbers in the corresponding Column G to add together and give me a sum at a glance. Can anyone tell me if this is possible and how to write the formula to get the info that I need? Thanks |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
This formula worked perfectly too. Thank You!!
"T. Valko" wrote: Try this: =SUMIF(B:B,"="&TODAY()-364,G:G) Biff "Lisa" wrote in message ... I need to be able to track data on a rolling 12 month cycle. For instance, how much money has been brought in from exactly 1 year ago from todays date?, Tomorrow, same question. My date is in Column B and the data that needs added together is in Column G. If the date in Column B is within the last 364 days from the current date I need the numbers in the corresponding Column G to add together and give me a sum at a glance. Can anyone tell me if this is possible and how to write the formula to get the info that I need? Thanks |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You're welcome!
Biff "Lisa" wrote in message ... This formula worked perfectly too. Thank You!! "T. Valko" wrote: Try this: =SUMIF(B:B,"="&TODAY()-364,G:G) Biff "Lisa" wrote in message ... I need to be able to track data on a rolling 12 month cycle. For instance, how much money has been brought in from exactly 1 year ago from todays date?, Tomorrow, same question. My date is in Column B and the data that needs added together is in Column G. If the date in Column B is within the last 364 days from the current date I need the numbers in the corresponding Column G to add together and give me a sum at a glance. Can anyone tell me if this is possible and how to write the formula to get the info that I need? Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Gantt chart - fill show progress of tasks over task time period??? | Excel Discussion (Misc queries) | |||
CONDITIONAL FORMATTING BASED ON RESULTS IN A CELL | Excel Worksheet Functions | |||
formula to determine time range overlap? | Excel Discussion (Misc queries) | |||
conditional formating cells i Excel based on other cells values | Excel Worksheet Functions | |||
how can i use colors in conditional formulas if i want the result. | Excel Discussion (Misc queries) |