Alright
Sorry about the thread title it's about as much sense as I could make it sound in a short space!
Basically the data I am using is to do with the football season 2009/2010 and I am trying to create an H2H page where it will show how each team fared against each other so an example would be Fulham v Hull. What the formula would have to do is find that specific fixture then return the scoreline into the cell.
The cell that will display the scoreline is on a different sheet to the cells that have the information. The scoreline is also seperated onto two different cells so if that scoreline was 3-0 then it would be 3 in one column and 0 in another.
The above would return what I was looking for except thats because I've went out and found what cells I was looking for just to see if that formula would work. Swapping d218 for d2:d381 and so on declares the formula as wrong therefore nothing displays.
Column D in matchinfo is the home team. Column E is the away team. Column I is the home team score and column J is the away team score.
I am using Excel 2007 as well.
Thanks for any help and hopefully I've made sense explaining the problem!
Sorry about the thread title it's about as much sense as I could make it sound in a short space!
Basically the data I am using is to do with the football season 2009/2010 and I am trying to create an H2H page where it will show how each team fared against each other so an example would be Fulham v Hull. What the formula would have to do is find that specific fixture then return the scoreline into the cell.
The cell that will display the scoreline is on a different sheet to the cells that have the information. The scoreline is also seperated onto two different cells so if that scoreline was 3-0 then it would be 3 in one column and 0 in another.
=IF(AND(MatchInfo!D218= A3,MatchInfo!E218=B1),MatchInfo!I218&"-"&MatchInfo!J218,"")
The above would return what I was looking for except thats because I've went out and found what cells I was looking for just to see if that formula would work. Swapping d218 for d2:d381 and so on declares the formula as wrong therefore nothing displays.
Column D in matchinfo is the home team. Column E is the away team. Column I is the home team score and column J is the away team score.
I am using Excel 2007 as well.
Thanks for any help and hopefully I've made sense explaining the problem!