Forum Discussion
Amanda2150
Jul 18, 2021Copper Contributor
Nesting IF Functions with Multiple References
So I am trying to make a college shopping list. I want the "Cost" column to only show a number if the "Owned?" column says "No". After that (if it equals "No"), I want it to check to see if the "Unit...
- Jul 18, 2021
How about this?
=IF([@Owned]="No",IF([@[Unit Price]]>0,[@Quantity]*[@[Unit Price]],""),"")
Subodh_Tiwari_sktneer
Jul 18, 2021Silver Contributor
How about this?
=IF([@Owned]="No",IF([@[Unit Price]]>0,[@Quantity]*[@[Unit Price]],""),"")
- Amanda2150Jul 18, 2021Copper Contributor
Yes! Thank you!
- Subodh_Tiwari_sktneerJul 18, 2021Silver Contributor
You're welcome Amanda2150! Glad it worked as desired.
Please take a minute to accept the post with the proposed solution as a Best Response to mark your question as Solved.