Hi @Robertjde,
Could you please share a bit more about your need?
Based on the issue that you mentioned, do you want to filter gallery based on certain employee and week?
Since you said that you visualized the current calendar week and the user name in a label, I want to explain to you that you could not refer to the calendar week that you put within a Label. When we refer to a column name, we should refer to it directly rather than a string.
Besides, the filtered Gallery will display the whole record including all the fields within which means that visualizing the current calendar week in a Label does not make sense because the Gallery will display all the fields within.
As an alternative solution, you could specify the tour rather than the calendar week in a Label by setting the Items property of the Gallery as below:
Filter('BOS Tours',Title.DisplayName=Label1.Text,1=Label12.Text)
Hope my explanation makes sense.