what is the best way to update formula for the hint text to show 'Search projects' given the current one is:
With(
{
varDefault: "Search campaigns",
varOOBTextId: "_translateCommon__Searchcampaigns"
},
With(
{
varLocalizedText: LookUp(
colLocalization,
OOBTextId = varOOBTextId,
LocalizedText
)
},
Coalesce(
varLocalizedText,
varDefault
)
)
)