Hi All,

Experienced excel user but just starting to use VBA and new to your great forum.
I've already found a lot of very helpful posts, but I've reached a sticking point.

I have list based data validation to set a cell (A1) to USD, EUR, GBP or CAD.
I need the next 2 cells (B1:C1) in the row to be set to the correct number format depending on the value selected.

If I'm going about it the right way I already have:

Select Case Target.Value
Case "USD":
                .NumberFormat = "_([$$]* #,##0.00_);_([$$]* (#,##0.00);_([$$]* "" - ""??_);_(@_)"
Case "EUR":
                .NumberFormat = "_([$€]* #,##0.00_);_([$€]* (#,##0.00);_([$€]* "" - ""??_);_(@_)"
Case "GBP":
                .NumberFormat = "_([$£]* #,##0.00_);_([$£]* (#,##0.00);_([$£]* "" - ""??_);_(@_)"
Case "CAD":
                .NumberFormat = "_([$$]* #,##0.00_);_([$$]* (#,##0.00);_([$$]* "" - ""??_);_(@_)"
            End Select
Not sure where to go next, hopefully someone can point me in the right direction.

Thanks in advance, Alex.