Hi, i need to use the or operator in this case...
I have a SP list with 4 column.
Regionold; regionold2; regionold3; region
Region is like a state. I need to filter the user region actually in use with the new region.
For that,
1. I Check the region of the user with office365user
2- if he lives in regionold, print the value in region; if he lives in region2 print region, if he lives in region3 print region.
To test that i add a combobow with this formula
'Utilisateursd''Office365'.SearchUser({searchTerm:ComboBox1.SearchText;top:100}).Mail
then i add a dropdown control and i add ths formula
Filter(Base_region_centre_update; Region_Old Or Region_Old2 Or Region_Old3='Utilisateursd''Office365'.UserProfileV2(ComboBox1.Selected.Mail).companyName).Region
but it's not working. If i tried to filter with only Region_old it's working.
My sp looks like this

the attribut compagnyname is where are stored the user region in our AAD
I use this formula to check this
'Utilisateursd''Office365'.UserProfileV2(ComboBox1.Selected.Mail).companyName
Can you help me. What am i missing ?
Thanks