Pass/Fail return Scene failed w/ other info

ExceLoki

Well-known Member
Joined
Dec 13, 2021
Messages
539
Office Version
  1. 365
Platform
  1. Windows
pretty sure i've done/seen this before, but drawing a blank on it atm, assistance is always appreciated!

first part has a table users fill out grading scenes as pass fail. i want on another page for anytime a fail happens to populate the client, id, type, and which scene was marked as fail.
------------
testing tracking.xlsx
ABCDEFGHIJKL
1Clientidtypescene 1scene 2scene 3scene 4scene 5scene 6scene 7scene 8
21422710LSPassPassPassPassPassFailPassPass
31422710SLPassFailPassPassPassPassPassPass
41422710JAPassPassPassPassPassPassPassFail
51422710JSPassPassPassPassFailPassPassPass
61422710CLPassPassPassPassPassPassPassPass
72394285LSPassPassPassFailPassPassPassPass
82394285SLPassPassPassPassPassPassPassPass
92394285JAPassPassPassPassPassFailFailPass
102394285JSFailPassFailPassPassPassPassFail
112394285CLPassPassPassPassPassPassPassPass
Sheet2
Cells with Conditional Formatting
CellConditionCell FormatStop If True
E10Cell Value="Pass"textNO
E10Cell Value="Fail"textNO
F3Cell Value="Pass"textNO
F3Cell Value="Fail"textNO
E2:E9,F4:G9,F10,E11:L11Cell Value="Pass"textNO
E2:E9,F4:G9,F10,E11:L11Cell Value="Fail"textNO
F2Cell Value="Pass"textNO
F2Cell Value="Fail"textNO
G10,G2:L2,G3,H3:L10Cell Value="Pass"textNO
G10,G2:L2,G3,H3:L10Cell Value="Fail"textNO
Cells with Data Validation
CellAllowCriteria
E2:L11List=validation!$C$1:$C$2

------------
testing tracking.xlsx
ABCD
1Clientidtypescene failed
21422710LSscene 6
31422710SLscene 2
41422710JAscene 8
51422710JSscene 5
62394285LSscene 4
72394285JAscene 6
82394285JAscene 7
92394285JSscene 1
102394285JSscene 3
112394285JSscene 8
Fail Notes
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
How about
Fluff.xlsm
ABCD
1Clientidtypescene failed
21422710LSscene 6
31422710SLscene 2
41422710JAscene 8
51422710JSscene 5
62394285LSscene 4
72394285JAscene 6
82394285JAscene 7
92394285JSscene 1
102394285JSscene 3
112394285JSscene 8
Sheet1
Cell Formulas
RangeFormula
A2:C11A2=TOCOL(IF(Sheet2!$E$2:$L$11="fail",Sheet2!A2:A11,1/0),2)
D2:D11D2=TOCOL(IF(Sheet2!$E$2:$L$11="fail",Sheet2!E1:L1,1/0),2)
Dynamic array formulas.
 
Upvote 0
Solution
thanks fluff, worked great.
my problem was trying to do it all at once, not in 2 parts.
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0
If the data was structured in what is known as a "normalized database" structure, where the columns were:
Client, id, type, scene number, pass/fail value
(so you would have less columns and more rows)
soemthing like this would be pretty easy to do with the new FILTER function in Excel 365.
 
Upvote 0

Forum statistics

Threads
1,215,198
Messages
6,123,593
Members
449,109
Latest member
Sebas8956

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