SOLVED

Pricing Tool Automation

Copper Contributor

Hi there,

 

I am trying to create a way for my price list to become dynamic. You would have to select a package, then a company size and I want it to automatically assign the price based on the prior two selections. The problem is that there are many different combinations so I am struggling to get my function to run through the various options. I can get it to work for a single option.

 

Any suggestions?

 

Thank you in advance!

 

3 Replies
I should add, the packages and company size are currently in a drop down list if that matters
best response confirmed by Hans Vogelaar (MVP)
Solution

@Sleav83 

=VLOOKUP(E2&F2,CHOOSE({1,2},A2:A16&B2:B16,C2:C16),2,0)

 

Is this what you are looking for? Enter formula as arrayformula with ctrl+shift+enter if you don't work with Office365 or 2021. Dropdowns are in E2 and F2 in my example.

@OliverScheurich this is awesome. Thank you and Happy New Year!

1 best response

Accepted Solutions
best response confirmed by Hans Vogelaar (MVP)
Solution

@Sleav83 

=VLOOKUP(E2&F2,CHOOSE({1,2},A2:A16&B2:B16,C2:C16),2,0)

 

Is this what you are looking for? Enter formula as arrayformula with ctrl+shift+enter if you don't work with Office365 or 2021. Dropdowns are in E2 and F2 in my example.

View solution in original post