hi @Veera0612
Create a reference table with the phonetics in it
there are a few ways to go about this, something like:
Set(
Phonetics,
Table(
{
key: "a",
phonetic: "alfa,"
},
{
key: "b",
phonetic: "bravo"
},
{
key: "c",
phonetic: "charlie"
},
{
key: "d",
phonetic: "delta"
},
{
key: "e",
phonetic: "echo"
},
{
key: "f",
phonetic: "foxtrot"
},
{
key: "g",
phonetic: "golf"
},
{
key: "h",
phonetic: "hotel"
},
{
key: "i",
phonetic: "india"
},
{
key: "j",
phonetic: "juliett"
},
{
key: "k",
phonetic: "kilo"
},
{
key: "l",
phonetic: "lima"
},
{
key: "m",
phonetic: "mike"
},
{
key: "n",
phonetic: "november"
},
{
key: "o",
phonetic: "oscar"
},
{
key: "p",
phonetic: "papa"
},
{
key: "q",
phonetic: "quebec"
},
{
key: "r",
phonetic: "romeo"
},
{
key: "s",
phonetic: "sierra"
},
{
key: "t",
phonetic: "tango"
},
{
key: "u",
phonetic: "uniform"
},
{
key: "v",
phonetic: "victor"
},
{
key: "w",
phonetic: "whiskey"
},
{
key: "x",
phonetic: "x-ray"
},
{
key: "y",
phonetic: "yankee"
},
{
key: "z",
phonetic: "zulu"
}
)
)
Add a gallery and set the Items as follows:
AddColumns(
Split(
yourPassWordValue,
""
).Result,
"phon",
LookUp(
Phonetics,
key = Lower(Result)
).phonetic
)
Result:
Two label in the gallery
label1 = ThisItem.Result
label2 = " - " & Proper(ThisItem.phon)

Hope it helps,
R