Copy entire Row (via formula) if multiple criteria met

SuzyQPA2

Board Regular
Joined
Oct 28, 2004
Messages
90
Hi,
I have columns & rows of data

I have inserted Columns where i am comparing data and get the result True/False.
What i would like is a formula that pulls a row that has any false in it to a summary worksheet (say Sheet1)

Thanks any help appreciated.
I would prefer a formula if possible to do by formula.
eg
Excel Workbook
ABCDEFGHI
1GroupAcctMemberNameFacType per rateType per FidMatch TypePlan Per IBXPlan per FidMatch Plan
2123456Doe, JaneAMsinglesingleTRUEHMO HighHMO High FTTRUE
3333328Wolf, Red RidingAMSINGLESINGLETRUEDIRECTPOSHMO HIGH FT- AMERIHEALTHFALSE
4123456Mouse, MickeyAMFamilysingleFALSEHMO HighHMO High FTTRUE
AM-IBX
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
You could have an extra column to make a pointer, and then reference it in your summary sheet, like this:

Excel Workbook
ABCDEFGHIJ
1GroupAcctMemberNameFacType per rateType per FidMatch TypePlan Per IBXPlan per FidMatch PlanExtract pointer
2123456Doe, JaneAMsinglesingleTRUEHMO HighHMO High FTTRUE0
3333328Wolf, Red RidingAMSINGLESINGLETRUEDIRECTPOSHMO HIGH FT- AMERIHEALTHFALSE1
4123456Mouse, MickeyAMFamilysingleFALSEHMO HighHMO High FTTRUE2
Sheet2



with the summary sheet fetching rows like this:

Excel Workbook
ABCDEFGHI
1GroupAcctMemberNameFacType per rateType per FidMatch TypePlan Per IBXPlan per FidMatch Plan
2333328Wolf, Red RidingAMSINGLESINGLETRUEDIRECTPOSHMO HIGH FT- AMERIHEALTHFALSE
3123456Mouse, MickeyAMFamilysingleFALSEHMO HighHMO High FTTRUE
4         
Sheet1
 
Upvote 0
My suggestion is similar in concept. Formulas a little different.

Sheet2
If I have understood your requirements correctly then you could use these formulas in F2 and I2 (copied down) instead of the formulas you currently have. If I have that wrong then keep your current formulas but the rest of my suggestion should still hold.

J1 is blank or houses a 0
J2 copied down

Excel Workbook
ABCDEFGHIJK
1GroupAcctMemberNameFacType per rateType per FidMatch TypePlan Per IBXPlan per FidMatch Plan2
2123456Doe, JaneAMsinglesingleTRUEHMO HighHMO High FTTRUE0
3333328Wolf, Red RidingAMSINGLESINGLETRUEDIRECTPOSHMO HIGH FT- AMERIHEALTHFALSE1
4123456Mouse, MickeyAMFamilysingleFALSEHMO HighHMO High FTTRUE2
5
Sheet2



Sheet1
J1 is blank or houses a 0
J2 copied down.
A2 copied across to column I and then A2:I2 copied down.

Excel Workbook
ABCDEFGHIJ
1GroupAcctMemberNameFacType per rateType per FidMatch TypePlan Per IBXPlan per FidMatch Plan
2333328Wolf, Red RidingAMSINGLESINGLETRUEDIRECTPOSHMO HIGH FT- AMERIHEALTHFALSE1
3123456Mouse, MickeyAMFamilysingleFALSEHMO HighHMO High FTTRUE2
4
Sheet1
 
Upvote 0
Peter,
I would either leave the True/False columns in or have the differences highlighted with a conditional formula. That way there is a summary page with the differences and a detail page with all data showing differences.
 
Upvote 0
Peter,
I would either leave the True/False columns in or have the differences highlighted with a conditional formula. That way there is a summary page with the differences and a detail page with all data showing differences.
I was not suggesting that you remove the True/False columns. I was just suggesting simpler formulas to produce the True/False values in those columns.

Did you try either of the suggestions for producing the summary page? Did they produce the desired result.
 
Upvote 0

Forum statistics

Threads
1,214,645
Messages
6,120,711
Members
448,984
Latest member
foxpro

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