It looks like you're trying to use Power Apps to create a collection based on selections from ComboBox1 and specific rows from Tabla1. The ClearCollect function is a good choice for this, but the syntax you're using seems to be incorrect. The && operator is not used for combining collections in this context.
Here's a revised version of your code that should work:
Navigate(MapScreen1, ScreenTransition.Fade);
ClearCollect(
colLocations,
ComboBox1.SelectedItems,
First(Tabla1),
LookUp(Tabla1, RowNumber(Tabla1) = 31),
LookUp(Tabla1, RowNumber(Tabla1) = 32)
);
In this version, I separated the Navigate and ClearCollect functions with a semicolon, which allows you to execute multiple functions in sequence. Inside ClearCollect, I used commas to separate the different items you want to collect.