Reputation: 962
I am a bit of an MS Excel amateur, but I'm pretty sure that Excel can handle something like this. I have a spreadsheet where the first sheet is a master sheet presenting the codes and description of some tasks, followed by some (multiple) workrole sheets, each having a small subset of those codes that conform to that workrole.
Master Sheet
Code | Description | Module 1 | Module 2 | Module 3 | ...
4 XYZ Yes No No
6 ABC No Yes Yes
Workrole Sheet
Code | Module 1 | Module 2 | Module 3 | ...
4
7
I want that if someone types in Yes
in Module 2
corresponding to the Code 6
in the Master sheet, Yes
appears in Module 2
of all the workrole sheets that have that particular code 6
in them. Plus, that particular row gets coloured green (but not so important). Can someone help me with this?
Upvotes: 0
Views: 689
Reputation: 812
What you want to achieve involves two different actions (just give the most basic way below): 1) To copy the "Yes" to each Workrole sheet:
=index('Master sheet'![column of
Module 2 in master], match([cell contains the Code of your entry],
'Master sheet'![column of Code in master],0))
2) To highlight the row:
=($[column of Module 2][first data row]="Yes")
<-- note the "$"Upvotes: 1