On a table detail list a google calendar event

I'm trying to list the events related to a specific row indentify by a column. 

Using this expression returns all my calendar events instead a mach one.

SELECT(AgendaGoogle[Title], (CONTAINS(AgendaGoogle[Title], [Processo nรบmero])))

Also try, with no sucess:

FILTER(AgendaGoogle[Title], AND(ENDSWITH((AgendaGoogle[Title]), [Processo nรบmero])))

ANY(SELECT(AgendaGoogle[Title], (CONTAINS((AgendaGoogle[Title]), [Processo nรบmero]))))

Someone please can help me?

 

Quatz_1-1666299412415.png

 

Solved Solved
0 2 94
1 ACCEPTED SOLUTION

2 REPLIES 2

OMG! Tks very very very much! ๐Ÿ™๐Ÿ™๐Ÿ™๐Ÿ™ works for me now by apply your solution!

 

SELECT(AgendaGoogle[Title], (CONTAINS([Title], [Processo nรบmero])))

Top Labels in this Space