Forum Discussion

DAWJr's avatar
DAWJr
Copper Contributor
May 14, 2024
Solved

table set up for mail merge

Hello,   Bottom Line Up Front: I am attempting to set up an Excel sheet to use as the Merge Fields for a mail merge.   Background: I have over 2300 supervisors at varying levels of experience th...
  • Riny_van_Eekelen's avatar
    May 15, 2024

    DAWJr 

    Re challenge #1:

    The =IF(H2<1,"Priority",IF(H2=1.1>=2.9,"CatchUp",IF(H2>3,"Refresher"))) will indeed never come to the "Refresher" stage as the second test H2=1.1>=2.9 will always evaluate as TRUE and thus return "CatchUp". Obviously your intention is to test if the value is between 1.1 and 2.9, but that's not the way to achieve it. You could use IF(AND(H2>=1.1,H2<=2.9),...... but that's unnecessary.

    Change the order of the logical_tests in stead.

    =IF(H2>=3,"Refresher",IF(H2>=1.1,"CatchUp","Priority"))

Resources