WORKBOOK INFORMATION
MS Excel 2002
Worksheets, A=MEN B=WOMEN C=RESULTS D=EMAIL MESSAGE
Columns, E=ID# F=NAME G=EMAIL ADDRESS
Worksheet "D" needs to pull information from worksheet"C" through the CONCATENATE FUNCTION as well as pull information from either worksheet"A" or worksheet"B". The culled information will be used to create a formatted message.
In worksheet"D" in the first cell I enter:
and it works. The problem is there are 25 cells across that need the IF FUNCTION to check for the presence or absence of the letter "X" and, apparently, you cannot nest more than 7 functions. I tried the following but there is not a second result even though there should be. The only change that takes place with the second string is the email address in cell Women!D5 is appended by the number 3.
The answer to making this work would be great but I would be extremely happy with being pointed in the right direction. I have zero experience with Excel up until five days ago. I never understood the demand for Excel because, to me, Word could do everything that Excel could do but do it a lot easier. BOY WAS I WRONG! The last five days I've been in awe of the things Excel can do.
MS Excel 2002
Worksheets, A=MEN B=WOMEN C=RESULTS D=EMAIL MESSAGE
Columns, E=ID# F=NAME G=EMAIL ADDRESS
Worksheet "D" needs to pull information from worksheet"C" through the CONCATENATE FUNCTION as well as pull information from either worksheet"A" or worksheet"B". The culled information will be used to create a formatted message.
In worksheet"D" in the first cell I enter:
Code:
=CONCATENATE("Dear"," ",Results!B3,":"&CHAR(10)&"You received", " ", Results!AB3," ","results."," ","Please see the list below."&CHAR(10)&CHAR(10)&"ID-",IF(Results!C3="X",Women!A5&" "&Women!B5&" "&Women!D5,""))
Code:
=CONCATENATE("Dear"," ",Results!B3,":"&CHAR(10)&"You received", " ", Results!AB3," ","results."," ","Please see the list below."&CHAR(10)&CHAR(10)&"ID-",IF(Results!C3="X",Women!A5&" "&Women!B5&" "&Women!D5,""),IF(Results!D3="X",Women!A6&" "&Women!B6&" "&Women!D6,""))