Help: SUMIF

jlexcel00

New Member
Joined
Sep 1, 2019
Messages
2
Dear excel brothers and sisters, need your help please on something that perhaps is simple problem :)

1) I have a cash flow that runs on periods:

ROW 1 - PERIODS: 1 / 2 / 3 / 4 / 5 / 6 / 7 / 8 / 9 /

ROW 2 - CASH FL: 1 / 1 / 1 / 1 / 1/ 1 / 1 / 1 / 1/

ROW 3 - CELL: A3=5

2) My goal is to sum the cash-flow starting from a certain period (criteria). For example:

SUMIF( PERIODS , ">5", CASH FL ) = returns summation of 4.

3) NOW I am hard-coding the criteria in the formula as a number. It works, but it is not dynamic.

3.1) HOWEVER the period (criteria) changes and needs to be tied into another cell (in our example A3), so it will be changed from period 1 to 9. For example:

SUMIF( PERIODS , ">A3", CASH FL ) = returns summation of 4

Unfortunately this last syntax does not work for me. What am I doing wrong? Alternatives?
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
try

SUMIF( PERIODS , ">"&A3, CASH FL )
 
Upvote 0

Forum statistics

Threads
1,223,893
Messages
6,175,246
Members
452,623
Latest member
cliftonhandyman

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top