Using If function to separate data into multiple sheet
Hello,
I have a master sheet that I would like to split it into multiple sheets based on Column A (Date In) . In master sheet, it has 4 columns: A: Date In, B: Name, C: ##, D: Date Out. This is the way I would like how If function work: If any cell of column A in master sheet matches with B1 (a date cell) on any of my sheets, the value in column C will go on cell L216 of that sheet. I really need your help.
For example:
In A2: 4/3/17 (Master sheet) matches with B1: 4/3/17 (Sheet 1), so the value of C2 (Master sheet) would be on L216 (Sheet 1)
If(A2 (Master) = B1 (Sheet 1), L216 (sheet 1) = C2 (Master Sheet), "")
Another example:
In A5: 4/8/17 (Master sheet) matches with B1: 4/8/17 (Sheet 5), C2 (Master sheet) would be on L216 (Sheet 5)
If(A5 (Master) = B1 (Sheet 5), L216 (sheet 5) = C5 (Master Sheet), "")
I appreciate your help!