Dear
I have a table GFW.
This tables has 5 columns,
Uniq_id, name_of_company, serial, model, date_of_creation
In the table name_of_company i have company which equal to many names
Company_A_nr1
Company_A_nr3
Company_A_nr4
And many others companies
Company_B.... Company_Z
This Companies has uniqal ID as well.
I was trying to use expression with replace function to give new one names for these Companies
Company_A_nr1 replace with Company_A
Company_A_nr3 replace with Company_A
For one name its easy
Replace([name_of_company];"Company_A_nr1";"Company_A")
But i dont know how to realize for many entries with diferent names.
In that same time i want to replace their uniq_id with one
Do you have any suggestion how to realize that.