Nathan Asius
New Member
- Joined
- Jan 15, 2024
- Messages
- 41
- Office Version
- 365
- Platform
- Windows
This is probably and easy solution when the right function is learned.
I'm building a calculator to cost out a custom list of products. There are many choices a customer has and I'm trying to account for all of them.
I uploaded a sample screenshot of what this will look like.
My worksheet I have had to use some helper cells in column C,D,E, and F. These will eventually be hidden, but the results in each of those cells will display a price based on user selections elsewhere.
In column G, I have my total that will take the price of one those columns only. So over the 4 columns the only way I could figure out to display in column G, is with the following IF(AND formula
In Cell G2 it looks like this:
=IF(AND(C2="",D2="",E2=""),F2,IF(AND(C2="",E2="",F2=""),D2,IF(AND(C2="",D2="",F2=""),E2,IF(AND(D2="",E2="",F2=""),C2))))
But this formula can only read for blanks and doesn't account for, or filter out, N/A or FALSE results.
Is there a more simple function I can put in G that can read across all four cells and account for and filter out for Blanks, N/A, and FALSES, or anything else that could appear other than a price (number)?
I'm building a calculator to cost out a custom list of products. There are many choices a customer has and I'm trying to account for all of them.
I uploaded a sample screenshot of what this will look like.
My worksheet I have had to use some helper cells in column C,D,E, and F. These will eventually be hidden, but the results in each of those cells will display a price based on user selections elsewhere.
In column G, I have my total that will take the price of one those columns only. So over the 4 columns the only way I could figure out to display in column G, is with the following IF(AND formula
In Cell G2 it looks like this:
=IF(AND(C2="",D2="",E2=""),F2,IF(AND(C2="",E2="",F2=""),D2,IF(AND(C2="",D2="",F2=""),E2,IF(AND(D2="",E2="",F2=""),C2))))
But this formula can only read for blanks and doesn't account for, or filter out, N/A or FALSE results.
Is there a more simple function I can put in G that can read across all four cells and account for and filter out for Blanks, N/A, and FALSES, or anything else that could appear other than a price (number)?