Jul 13, 2007 #1 istone IS-IT--Management Jan 24, 2007 139 US Hi, Can anyone tell me why this formula is not working. IIf(([Assets]<=1000000,18500/4), IIF(([Assets] between 1000000 and 2000000),14500/4),10500/4) I tried to make it work but in vain. thanks in advance
Hi, Can anyone tell me why this formula is not working. IIf(([Assets]<=1000000,18500/4), IIF(([Assets] between 1000000 and 2000000),14500/4),10500/4) I tried to make it work but in vain. thanks in advance
Jul 13, 2007 1 #2 rac2 Programmer Apr 26, 2001 1,871 US The IIf() function takes three arguments. Code: IIf( [Assets] <= 1000000, 18500/4, IIf( [Assets] between 1000000 and 2000000, 14500/4, 10500/4 ) ) Upvote 0 Downvote
The IIf() function takes three arguments. Code: IIf( [Assets] <= 1000000, 18500/4, IIf( [Assets] between 1000000 and 2000000, 14500/4, 10500/4 ) )
Jul 13, 2007 1 #3 randy700 Programmer Sep 25, 2003 2,384 US Too many opening ('s. How about... [blue] =IIf(Assets <= 1000000, 4625, IIf(Assets Between 1000000 and 2000000, 3625, 2625))[/blue] Randy Upvote 0 Downvote
Too many opening ('s. How about... [blue] =IIf(Assets <= 1000000, 4625, IIf(Assets Between 1000000 and 2000000, 3625, 2625))[/blue] Randy
Jul 13, 2007 Thread starter #4 istone IS-IT--Management Jan 24, 2007 139 US Worked. thank you so much guys. Upvote 0 Downvote