G
Guest
Hi,
I inherited the following expression, which is supposed to assign a minimum
fee of $25 to all customers in Project 10 and a mimimum fee of $75 to all
customers in any other Project (1,2,3,4,5,6,7,8,9,11 etc). What it is
actually doing is only bringing back the 10 customers and none other. It is
not assigning $25 either, but $0.
Why is this only bringing back the 10s? And why isn't it assigning a fee?
Thank you for any help.
MgmtFee1:
IIf(dbo_grp_project!IND_PRJ="10",IIf([MgmtFee]<=25,[MgmtFee]=25,[MgmtFee]),IIf([MgmtFee]<=75,[MgmtFee]=75,[MgmtFee]))
I inherited the following expression, which is supposed to assign a minimum
fee of $25 to all customers in Project 10 and a mimimum fee of $75 to all
customers in any other Project (1,2,3,4,5,6,7,8,9,11 etc). What it is
actually doing is only bringing back the 10 customers and none other. It is
not assigning $25 either, but $0.
Why is this only bringing back the 10s? And why isn't it assigning a fee?
Thank you for any help.
MgmtFee1:
IIf(dbo_grp_project!IND_PRJ="10",IIf([MgmtFee]<=25,[MgmtFee]=25,[MgmtFee]),IIf([MgmtFee]<=75,[MgmtFee]=75,[MgmtFee]))