M Matin_Murad Member Local time Yesterday, 21:37 Joined Jul 1, 2020 Messages 39 Jun 25, 2022 #1 إظهار القيمة المكررة بين ثلاثة أعمدة Attachments zzz.png 11.5 KB · Views: 95 3or2Colume.accdb 3or2Colume.accdb 960 KB · Views: 103 Last edited: Jun 25, 2022
C CJ_London Super Moderator Staff member Local time Today, 05:37 Joined Feb 19, 2013 Messages 17,523 Jun 25, 2022 #2 to what purpose? just to highlight them? delete them? move them around? the data is not normalised so anything you do will involve more work. but if you just want a list excluding duplicates use a union query Code: select mobile1 as mobile from myTable union select mobile2 from myTable union select mobile3 from myTable this will automatically remove duplicates
to what purpose? just to highlight them? delete them? move them around? the data is not normalised so anything you do will involve more work. but if you just want a list excluding duplicates use a union query Code: select mobile1 as mobile from myTable union select mobile2 from myTable union select mobile3 from myTable this will automatically remove duplicates