Hello all : I want to show a duplicate value between three columns

Matin_Murad

Member
Local time
Today, 12:52
Joined
Jul 1, 2020
Messages
40
إظهار القيمة المكررة بين ثلاثة أعمدة
 

Attachments

  • zzz.png
    zzz.png
    11.5 KB · Views: 95
  • 3or2Colume.accdb
    3or2Colume.accdb
    960 KB · Views: 103
Last edited:
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
 

Users who are viewing this thread

Back
Top Bottom