I'll simplify the problem I'm having with an example.
I have 2 sheets the first (called CLIENTS) has FIRSTNAME, LASTNAME, COMPANY, TYPE, STATUS
The second (called JOBS) has FIRSTNAME, LASTNAME, COMPANY, TYPE, SITE, POSTCODE
The idea is that the first sheet is filled in with clients and in the STATUS column the answer is either YES or NO (I'm trying to differentiate between active and non active clients).
On the second sheet I complete the FIRSTNAME and LASTNAME and the COMPANY and TYPE columns are auto populated from the CLIENT sheet using:-
=INDEX(Clients!$C$8:$C$2300,MATCH($A1&$B1,Clients!$A$8:$A$2300&Clients!$B$8:$B$2300,0))
=INDEX(Clients!$D$8:$D$2300,MATCH($A1&$B1,Clients!$A$8:$A$2300&Clients!$B$8:$B$2300,0))
These both work fine. However what I wan't to introduce now is that they only auto-populate if the STATUS in the CLIENT sheet is set to YES.
Hope that makes sense.
I have 2 sheets the first (called CLIENTS) has FIRSTNAME, LASTNAME, COMPANY, TYPE, STATUS
The second (called JOBS) has FIRSTNAME, LASTNAME, COMPANY, TYPE, SITE, POSTCODE
The idea is that the first sheet is filled in with clients and in the STATUS column the answer is either YES or NO (I'm trying to differentiate between active and non active clients).
On the second sheet I complete the FIRSTNAME and LASTNAME and the COMPANY and TYPE columns are auto populated from the CLIENT sheet using:-
=INDEX(Clients!$C$8:$C$2300,MATCH($A1&$B1,Clients!$A$8:$A$2300&Clients!$B$8:$B$2300,0))
=INDEX(Clients!$D$8:$D$2300,MATCH($A1&$B1,Clients!$A$8:$A$2300&Clients!$B$8:$B$2300,0))
These both work fine. However what I wan't to introduce now is that they only auto-populate if the STATUS in the CLIENT sheet is set to YES.
Hope that makes sense.