I want a formula in a cell that searches the adjacent cell with its drop downs and then it would populate with my other referenced quantity cells elsewhere.
Cell is UNIT that I select from a drop down list: S.F. Bldg., Weeks, Months, Other
I want this formula in my cell at adjacent row of REF. QTY. to read cell UNIT and go get the numbers I populated once up at the top of my sheet in the same named column. And for the dop down selected Other, I wanted just to insert the number 1 that is typed in the formula already.
I had this working before in another sheet and somehow I accidentally deleted the formula and now I can't get the syntax right for doing more than one IF in the list. All the searches I find for this have variations of bracket types and ways of doing this. I keep getting an error showing #UNPARSEABLE.
I'm probably missing something painfully obvious but I need other eyes on this. Thanks for your help.
=IF(Unit@row = "S.F. Bldg.", $Ref. Qty.$78,
IF(Unit row = "Months", $Ref. Qty.$76,
IF(Unit@row = "Weeks", $Ref. Qty.$77,
IF(Unit@row = "Other", "1",))))