Mar 18 2024 09:56 AM
I'm doing an IF function in a table. This is an assignment and the book tells you what to type. I have done this particular function several times, deleted the assignment, started over, and have hit the same problem. I do not have a clue what to do. Excel is not my forte.
Mar 18 2024 11:19 AM
Please provide some details.
Mar 18 2024 12:23 PM
@HansVogelaar Is there a way to attach a file? #spill! is the result and I've looked through all of the options for that. Honestly don't understand enough and follow directions.
Mar 18 2024 12:39 PM
#SPILL! means that the formula wants to return a result to multiple cells, but some or all of those cells are already occupied.
If you cannot attach a file here, you can upload it to for example OneDrive, then share it and post a link in a reply. Or attach it to a private message to me - click on my user picture.
Mar 18 2024 01:41 PM
Mar 18 2024 02:02 PM
Your current formula is
=IF([Specialty]="Loans",[Account Values]*0.0025,0)
[Specialty] and [Account Values] refer to the entire table column of that name; that won't work. You have to refer to the item in the current row instead. To do that, use [@Specialty] and[@[Account Values]]. The extra brackets in the latter one are necessary because of the space in the column name.
So the formula becomes
=IF([@Specialty]="Loans",[@[Account Values]]*0.0025,0)
Mar 18 2024 02:26 PM
Mar 18 2024 02:30 PM
Mar 18 2024 02:53 PM
Perhaps the book was written for an older version of Excel, when formulas didn't "spill" yet.