Hello,
I've been trying to create an Excel calculator that would allow me to easily give a quote to a potencial guest. My Excel knowledge is pretty limited, but I did manage to get it to work in calculating a value given a specific set of conditions, like:
=(AG5IF(AK5="Baixa (Novembro-Abril)"; AQ11; 1)IF(AK5="Alta (Junho-Setembro)"; AQ12; 1)IF(AK5="Intermédia (Maio e Outubro)"; AQ13; 1)+IF(AI5="Yes"; AQ19AJ5AN5; "0")+IF(AH5="Yes"; AQ18; "0")+IF(AJ5>2; 10AJ5-20; 0))IF(AM5="Emigrante (7,5%)"; AQ16; 1)IF(AM5="Portugal (10%)"; AQ15; 1)IF(AM5="Açores (12,5%)"; AQ17; 1)IF(AM5="Cliente (15%)"; AQ14; 1)*AN5
With this I am able to successfully calculate my quote, the exception being:
Thank you very much!!
I've been trying to create an Excel calculator that would allow me to easily give a quote to a potencial guest. My Excel knowledge is pretty limited, but I did manage to get it to work in calculating a value given a specific set of conditions, like:
- Is it a weekend?
- Is it low, intermediate or high season?
- How many guests are there?
- How many days will they stay?
- Are there any coupons or promotions to consider?
=(AG5IF(AK5="Baixa (Novembro-Abril)"; AQ11; 1)IF(AK5="Alta (Junho-Setembro)"; AQ12; 1)IF(AK5="Intermédia (Maio e Outubro)"; AQ13; 1)+IF(AI5="Yes"; AQ19AJ5AN5; "0")+IF(AH5="Yes"; AQ18; "0")+IF(AJ5>2; 10AJ5-20; 0))IF(AM5="Emigrante (7,5%)"; AQ16; 1)IF(AM5="Portugal (10%)"; AQ15; 1)IF(AM5="Açores (12,5%)"; AQ17; 1)IF(AM5="Cliente (15%)"; AQ14; 1)*AN5
With this I am able to successfully calculate my quote, the exception being:
- If the dates our guest needs a quote for include both weekdays and weekends.
- If the dates our guest needs a quote for include dates that are associated with two different price seasons.
- How many weekend days that date interval has and attribute these days an extra value.
- What price season these dates fall into and attribute a specific multiplier to them. If they fall on multiple price seasons, be able to sort that and attribute them distinct multipliers.
Thank you very much!!