If function in excel 2007

mysterg

New Member
Joined
Sep 10, 2008
Messages
3
Hi, Im new to this website, I just have a problem in my IF function on my Excel 2007. Im working on my report for the Aging of Receivebles, I dont know what is the right formula for my IF function. below is the format of my Report

Column A Column B Column C Column D Column E Column F Column G
Amount No. of Days Current Past Due Past Due Past Due Past Due
from Due Date 1-15 16-30 31-90 over 90

Sample:

$100 1 - $100 - - -
$100 (1) $100 - - - -
$100 16 - - $100 - -

Here's my initial formula in IF Function under Column C:
=IF(Column B <0,Column A,0)

My problem is the suceeding Columns
What would be my formula when my logical test is a range, ex. greater than zero and equals 15, greater than 15 but less than 30.

Could you help me in this case.

Thank you very much in advance

Myster
<!-- / message -->
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
The syntax would be like this:
=IF(AND(ColB>0,ColB<15),ColA,0)
However, give a look at VLOOKUP function using TRUE as the fourth parameter
within the parentheses.
HTH - Larry.
 
Upvote 0

Forum statistics

Threads
1,214,908
Messages
6,122,187
Members
449,071
Latest member
cdnMech

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