worksheet 'calculations', In column 'W' I want to check the table on WS 'training details' tbl 'emp_detail' for criteria (basic mod completed>0,LTV mod completed>0, Comped="") and they must be active - WS 'Details' tbl "Employees'.
I was using the Index(Match()) so the information/values in the 'calculations' WS would follow the 'emp_details' tbl since that is where the bulk of the info is from, and where the values would change. I know I could add another row to the 'emp_details' tbl and reference the data, but I am attempting to get away from that. I don't want to keep adding a column every time I need to display something.
The values from 'calculations' column 'W' would be used to pulled data onto the 'Follow up' WS. Part of the code
I used in the 'Training Details' 'Solo f/u' column. I had attempted to simly use a IF(AND() statement but could not get it to work. So I was forced to use multiple IF statements.
Any help or insight greatly appreciated.
I was using the Index(Match()) so the information/values in the 'calculations' WS would follow the 'emp_details' tbl since that is where the bulk of the info is from, and where the values would change. I know I could add another row to the 'emp_details' tbl and reference the data, but I am attempting to get away from that. I don't want to keep adding a column every time I need to display something.
The values from 'calculations' column 'W' would be used to pulled data onto the 'Follow up' WS. Part of the code
Code:
=IF([ID]>0,IF(Comped="",IF(Active="yes",IF(OR(Basics_Mod_Completed="",LTV_Mod_completed=""),TRUE,FALSE))))
Any help or insight greatly appreciated.