Accounts Payable Aging Formula

acctlab5

New Member
Joined
Jul 25, 2004
Messages
7
I have a formula that calculates the # of days (aging) of an invoice.

Let's day in Col A1,this age is 28.In Col B1 is the invoice amt,$100.

If the age in A is <30,I want to show the $100 in col C

If The age in A is>30 but <60,I want to show $100 in col D

If the age in A is>60,I want to show the $100 in col E.

How and what is the best way to do this?

Thanks

\db
 

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.
well i think you can do it this way:

in cell C1 enter this formula: =IF(A1<=30,B1,"")
in cell D1 enter this formula: =IF(AND(A1>=30,A1<=60),B1,"")
in cell E1 enter this formula: =IF(A1>60,B1,"")

Then select c1 to e1 and use the fill handle to fill the above formlas in the other cells below.
 
Upvote 0

Forum statistics

Threads
1,213,536
Messages
6,114,207
Members
448,554
Latest member
Gleisner2

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