Hi,
You can look up the conversion rate in your table.
I've attached an example to help. I used the named range 'Frequencies' rather than 'Frequency' because there is already an Excel worksheet function called FREQUENCY so I wanted to avoid any confusion.
Note that the headers in both tables are the same to make the look up easier. The look up formula in C2 is:
Code:
=$A2*INDEX(Rates,MATCH($B2,FrequencyLookUp,0),MATCH(C$1,ExpenseLookUp,0))
If a Frequency hasn't been selected then the formula would return #N/A. To address this you could use IFERROR() or ISERROR() functions, but I have simply added an extra row to the lookup table with a frequency of 0.
If you want me to go through any of it in more detail then please let me know...
Hope that helps...