Using a CONCATENATE function with an IF function.

J

JPP

I currently have this function:

=IF(AO116="1) Agent did not identify the beneficiary's likes
dislikes.,2) Agent did not ask or acknowledge they understand th
beneficiary's current coverage.,3) Agent failed to collect enoug
information to recommend a suitable plan.,4) Agent recommended a pla
that is not suitable for the beneficiary's needs.,6) Other complianc
issue.", "1) Agent did not identify the beneficiary's likes
dislikes.", “0”)


However, this is over the 255 char limit. How can I use this i
conjunction with the CONCATENATE function per the instructions in Excel
This code works, and is what I want to happen. It's just that this on
is too long for Excel's liking. Thank
 
J

joeu2004

JPP said:
I currently have this function:
=IF(AO116="1) Agent did not identify the beneficiary's likes &
dislikes.,2) Agent did not ask or acknowledge they understand the
beneficiary's current coverage.,3) Agent failed to collect enough
information to recommend a suitable plan.,4) Agent recommended a plan
that is not suitable for the beneficiary's needs.,6) Other compliance
issue.", "1) Agent did not identify the beneficiary's likes &
dislikes.", "0")
However, this is over the 255 char limit. How can I use
this in conjunction with the CONCATENATE function

Never use the CONCATENATE function. Use the concatenate operator (&). See
its use just before "4) Agent recommended a plan".

=IF(AO116="1) Agent did not identify the beneficiary's likes &
dislikes.,2) Agent did not ask or acknowledge they understand the
beneficiary's current coverage.,3) Agent failed to collect enough
information to recommend a suitable plan.," & "4) Agent recommended a plan
that is not suitable for the beneficiary's needs.,6) Other compliance
issue.", "1) Agent did not identify the beneficiary's likes &
dislikes.", "0")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top