I'm using SUMIFS
in Excel to add values on the basis of a site name. Currently, I'm using a *
wildcard to establish a generic site name so that similar site names are considered together (e.g. London&'*'
to group together "London 1"
and "London 2"
). My problem is that when the site names are too similar, as below:
"London 1" "London 2" "London Oxford St 1" "London Oxford St 2" "London Hammersmith"
then London&'*'
considers all of the above site names together, instead of grouping the ones that I want to group together (i.e. the ones where the site name is followed by a numeric value; "London 1"
and "London 2"
).
Is there a way of considering only numeric values for the wildcard instead of any text?