Use list of language IDs in TEXT formula?

gino59

Active Member
Joined
Jul 26, 2010
Messages
496
Hi all,
I'm trying to provide the ability for a user to select a language from a drop-down cell and have a different cell value change accordingly. This formula works:
=TEXT(A1,"[$-406]dddd") and turns Thursday into Torsdag (Danish) very nicely.

What I'd like to do is have the [$-406] part of the TEXT function be dynamic. So, if a user chooses French (for example) from the drop-down cell, that would then change the [$-406] to [$-40C] in the formula. (I have a lookup list of Language Name to Language ID).

Thank you!

Gino
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
Hi,

Try this:

In this example E2:E115 contain the language codes and F2:F115 contain the language names
A12 is the value from the drop-down cell

=TEXT(A1,"[$-"&INDEX(E2:E115,MATCH(A12,F2:F115,0))&"]"&"dddd")
 
Last edited:
Upvote 0
Many thanks, admiral100 and Gerald! Both functions work wonderfully!

Cheers,
Gino
 
Upvote 0

Forum statistics

Threads
1,215,443
Messages
6,124,890
Members
449,194
Latest member
JayEggleton

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top