Write Function that has 2 check boxes in it?
Hi everyone, I have had smartsheet for awhile and finally taking the time to learn/use it and am stuck. I have a custom apparel business and have made a sheet to keep track of all my orders and what the cost will be.
I have columns for Quantity, Balance, No Fulfillment (check box), and Paid (check box). I have a working function that fills my Balance by multiplying my cost (20) * Quantity and removes the balance when the check box under Paid is checked -
=IF(Paid1 = 0, Quantity1 * 20)
So, 20 is my cost with fulfillment, but I would like to be able to check No Fulfillment when needed and it changes my cost to 18, which changes my balance and still having it removed when clicking Paid.
=IF(Paid1 = 0, Quantity1 * 20), IF(No Fulfillment1 = 1, Quantity1 * 18)
Even I am confused by how I wrote this, but can anyone help?
Thanks!
Comments
-
So if Paid is NOT checked and No Fulfillment is NOT checked, then it would be Quantity * 20, but if Paid is NOT checked and No Fulfillment IS checked, then it would be Quantity * 18, and finally, if Paid IS checked, then leave it blank?
=IF(AND(Paid@row = 0, [No Fulfillment]@row = 0), Quantity@row * 20, IF(AND(Paid@row = 0, [No Fulfillment]@row = 1), Quantity@row * 18, IF(Paid@row = 1, "")))
-
Thank you so much, Paul, that works perfectly!
-
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 141 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!