Hi send_help_pls,
Since you're coming from Excel, I'll include the excel terminology parenthetically.
First, make a new table (sheet), and name fields (columns) 2-5:
GBP, USD, EUR, CNY
Set them up as currency fields (columns) with their respective symbols.
Next, add a Converted to GBP field (column) as a formula field.
Use the following formula:
IF(
{GBP} + ({USD} / 1.25) + ({EUR} / 1.2) + ({CNY} / 8.75) = 0,
"",
{GBP} + ({USD} / 1.25) + ({EUR} / 1.2) + ({CNY} / 8.75)
)
This should convert any of the currency fields into GBP.
