cameronWFA
New Member
- Joined
- Jun 4, 2012
- Messages
- 14
Hey Everyone
I am new to the forum, as I just began a project that is going to be very long and Excel "heavy." I am sure to have plenty of questions regarding Excel, and will do my best to answer as many as I can as I go as well.
My first question for the board is:
Excel seems to only allow 7 embedded arguments for a function. Is there a way around this? Basically, I have about 15 collumns of numbers, and at the top of each collumn is a header/name. The two last collumns, however, are important. The second to last is a function that prints the largest number across the collumns per row. E.g. A2,B2,C2, <-- whichever number is highest. The last collumn function (which is the one I am having trouble with), aims to test which collumn that "Highest Number" is from, and print out the Name/Header that is at the top. However, when I go past 7 embedded "if" statements, Excel freaks out. Here is the code:
Is there any way around this? Thanks in advance!
I am new to the forum, as I just began a project that is going to be very long and Excel "heavy." I am sure to have plenty of questions regarding Excel, and will do my best to answer as many as I can as I go as well.
My first question for the board is:
Excel seems to only allow 7 embedded arguments for a function. Is there a way around this? Basically, I have about 15 collumns of numbers, and at the top of each collumn is a header/name. The two last collumns, however, are important. The second to last is a function that prints the largest number across the collumns per row. E.g. A2,B2,C2, <-- whichever number is highest. The last collumn function (which is the one I am having trouble with), aims to test which collumn that "Highest Number" is from, and print out the Name/Header that is at the top. However, when I go past 7 embedded "if" statements, Excel freaks out. Here is the code:
=IF(DG26=CU26, $CU$25, (IF(DG26=CV26, $CV$25, (IF(DG26=CW26, $CW$25, (IF(DG26=CX26, $CX$25, (IF(DG26=CY26, $CY$25, (IF(DG26=CZ26, $CZ$25, (IF(DG26=DA26, $DA$25, "NULL")))))))))))))
Is there any way around this? Thanks in advance!