Can you create different formulas for each drop down list entry. EX:
Drop Down Box Items:
Car
Truck
Boat
Formula for Car: A1+A2=A3
Formula for Truck: A1-A2=A3
Formula for Boat: A1*A2=A3
Can you create different formulas for each drop down list entry. EX:
Drop Down Box Items:
Car
Truck
Boat
Formula for Car: A1+A2=A3
Formula for Truck: A1-A2=A3
Formula for Boat: A1*A2=A3
Hi clogistics,
Say the dropdown is in F1, then the formula might be:
= If(F1="Car",A1+A2,If(F1="Truck",A1-A2,If(F1="Boat",A1*A2,"")))
One test is worth a thousand opinions.
Click the * Add Reputation below to say thanks.
If you mean that you want a formula some place that calcs based on what the DD returns, try this...
=if(A3="Car",A1+A2,if(A3="Truck",A1-A2,IF(A3="Boat",A1*A2,"")))
If you will only have those 3 choices...
=if(A3="Car",A1+A2,if(A3="Truck",A1-A2,A1*A2))
1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
2. If your question is resolved, mark it SOLVED using the thread tools
3. Click on the star if you think someone helped you
Regards
Ford
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks