Estimate your currency conversions based on Mauritius Commercial Bank standard rates.
USD – US Dollar
EUR – Euro
GBP – British Pound
ZAR – South African Rand
AUD – Australian Dollar
CAD – Canadian Dollar
MUR – Mauritian Rupee
Bank Buys (You Sell Currency)
Bank Sells (You Buy Currency)
MUR – Mauritian Rupee
USD – US Dollar
EUR – Euro
GBP – British Pound
Estimated Total:
Exchange Rate Used:
How the MCB Exchange Rate Calculator Works
When dealing with international transactions in Mauritius, the Mauritius Commercial Bank (MCB) sets daily indicative rates for buying and selling foreign currencies. Our calculator uses these typical market spreads to help you estimate how many Mauritian Rupees (MUR) you will receive when selling foreign currency or how much you need to pay to acquire it.
Understanding "Bank Buys" vs "Bank Sells"
This is the most common point of confusion for customers at MCB branches:
Bank Buys (Buying Rate): Use this if you have foreign currency (like USD or EUR) and you want to convert it into Mauritian Rupees. The bank "buys" the foreign currency from you.
Bank Sells (Selling Rate): Use this if you have Mauritian Rupees and you need to buy foreign currency for travel or overseas payments. The bank "sells" the currency to you.
Typical MCB Conversion Examples
Rates fluctuate daily based on global market conditions. For example, if the MCB USD/MUR selling rate is 46.50:
To buy $1,000 USD, you would need approximately 46,500 MUR.
If the buying rate is 45.20 and you exchange $1,000 USD cash, you would receive 45,200 MUR.
Factors Affecting Your Final Rate
While this calculator provides a close estimate, your actual rate at the counter or via MCB Juice may vary based on:
Transaction Mode: Telegraphic Transfers (TT) often have better rates than physical cash notes.
Amount: Large corporate exchanges may qualify for "preferred rates."
Time of Day: Rates are usually refreshed every morning but can change during high volatility.
Note: This calculator uses indicative rates for educational purposes. For official live rates, please consult the MCB daily rate sheet or their mobile application.
function calculateMCBExchange() {
var amount = parseFloat(document.getElementById("mcbAmount").value);
var fromCurr = document.getElementById("mcbCurrency").value;
var toCurr = document.getElementById("mcbTarget").value;
var type = document.getElementById("mcbType").value;
if (isNaN(amount) || amount Bank buys USD.
if (type === "sell") {
// If user wants to BUY MUR using USD, Bank "sells" MUR.
// Since rates are quoted as MUR per Foreign Unit, we use the sell rate.
amountInMUR = amount * baseRates[fromCurr].sell;
}
result = amountInMUR;
rateApplied = amountInMUR / amount;
} else {
// Converting MUR to another Foreign Currency
// Bank SELLS the target currency
var targetRate = baseRates[toCurr].sell;
result = amountInMUR / targetRate;
rateApplied = result / amount;
}
}
document.getElementById("mcbResultDisplay").style.display = "block";
document.getElementById("finalValue").innerText = result.toLocaleString(undefined, {minimumFractionDigits: 2, maximumFractionDigits: 2}) + " " + toCurr;
document.getElementById("appliedRate").innerText = "1 " + fromCurr + " = " + rateApplied.toFixed(4) + " " + toCurr;
}