Array issue

ddotson

Board Regular
Joined
Nov 9, 2004
Messages
57
Hello everyone - here is my situation. I have one tab, which is a data dump, a second tab that has static information, as well as a vlookup to the data dump tab, and a third tab I am using for the summary...

I am trying to count the number of time something has been reviewed, which will show up as a date within the vlookup formula, but the cells can not be pasted as values - needs to keep the formula. With that said, I am having trouble counting, as there is always a value in the cell...

Here is my array formula:

=COUNT(IF(A3='NOI Data'!$B$6:$B$3670,IF('NOI Data'!$H$6:$H$3670="GNW Direct Serviced Loan",IF('NOI Data'!$U$6:$U$3670>0,(COUNT('NOI Data'!$U$6:$U$3670))))))

The Problem is that the U column is the product of the VLOOKUP...any suggestions would be very helpful.

Thanks!
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
Avoid using (non-working) formulas for describing a problem though...

Guessing...

Control+shift+enter, not just enter:
Code:
=SUM(
    IF('NOI Data'!$B$6:$B$3670=A3,
    IF('NOI Data'!$H$6:$H$3670="GNW Direct Serviced Loan",
    IF(1-ISNA('NOI Data'!$U$6:$U$3670),
      1))))

Is this close?
 
Upvote 0
The result of the formula was zero, and I know the result should be 32...

I am sorry - stupid my way - not sure how to paste the page information...
 
Upvote 0
The result of the formula was zero, and I know the result should be 32...

I am sorry - stupid my way - not sure how to paste the page information...

Code:
=SUM(
    IF('NOI Data'!$B$6:$B$3670=A3,
    IF('NOI Data'!$H$6:$H$3670="GNW Direct Serviced Loan",
    IF(1-ISNA('NOI Data'!$U$6:$U$3670),
      1))))

The above formulas says:

If a B-cell is equal to A3, and if a H-cell houses a string like GNW Direct Serviced Loan, and if a U-cell does not house any #N/A, count the B/H/U record in, otherwise don't.
 
Upvote 0

Forum statistics

Threads
1,214,650
Messages
6,120,736
Members
448,988
Latest member
BB_Unlv

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