thbutterflycollector_
New Member
- Joined
- Oct 29, 2015
- Messages
- 42
- Office Version
- 365
- Platform
- Windows
Hi,
I have created a dynamic data validation formula which originally was set up to allow a single party to allocate a unique Reference Number to a particular line item from a cost ledger.
However I am now required to adjust this formula so that another party can also review the document and add a unique Reference Number.
In the attached I have DC001, DC002 and DC003 in the first table but in the second table I have DC004 (being the next available item to select), However the dropdown in the first table still shows DC004 as being able to be selected even though it has already been picked by the second reviewer. Can anyone help resolve?
I have created a dynamic data validation formula which originally was set up to allow a single party to allocate a unique Reference Number to a particular line item from a cost ledger.
However I am now required to adjust this formula so that another party can also review the document and add a unique Reference Number.
In the attached I have DC001, DC002 and DC003 in the first table but in the second table I have DC004 (being the next available item to select), However the dropdown in the first table still shows DC004 as being able to be selected even though it has already been picked by the second reviewer. Can anyone help resolve?
Sample.xlsx | |||||||||
---|---|---|---|---|---|---|---|---|---|
B | C | D | E | F | G | H | |||
2 | Type | Helper | DC # | Type | Helper | DC # | |||
3 | X | True | X | True | |||||
4 | X | True | Fee | True | |||||
5 | X | True | Disallowed | False | DC004 | ||||
6 | Disallowed | False | DC001 | True | |||||
7 | Disallowed | False | DC002 | True | |||||
8 | Disallowed | False | DC003 | True | |||||
9 | Disallowed | False | True | ||||||
10 | True | True | |||||||
Raw Data |
Cell Formulas | ||
---|---|---|
Range | Formula | |
C3:C10,G3:G10 | C3 | =IF(B3="Disallowed","False","True") |
Cells with Conditional Formatting | ||||
---|---|---|---|---|
Cell | Condition | Cell Format | Stop If True | |
B3:H1048343 | Expression | =$A3="R" | text | NO |
D3:D10,H3:H10 | Expression | =C3="True" | text | NO |
Cells with Data Validation | ||
---|---|---|
Cell | Allow | Criteria |
D2 | List | =Register!$B$7# |
D3 | List | =IF(C3="False",Register!#REF!#) |
D4:D10 | List | =IF(C4="False",Register!$B$7#) |
H2 | List | =Register!$B$7# |
H3 | List | =IF(G3="False",Register!B8#) |
H4:H10 | List | =IF(G4="False",Register!$B$7#) |
Sample.xlsx | |||||
---|---|---|---|---|---|
B | C | D | |||
6 | DC Ref. | Identified By | |||
7 | DC004 | DC001 | |||
8 | DC005 | DC002 | |||
9 | DC006 | DC003 | |||
10 | DC007 | DC004 | |||
11 | DC008 | DC005 | |||
12 | DC009 | DC006 | |||
13 | DC010 | DC007 | |||
14 | DC011 | DC008 | |||
15 | DC012 | DC009 | |||
16 | DC013 | DC010 | |||
Register |
Cell Formulas | ||
---|---|---|
Range | Formula | |
B7:B53 | B7 | =FILTER(Register!$C$7:$C$56,COUNTIF('Raw Data'!D:D,Register!$C$7:$C$56)=0) |
Dynamic array formulas. |