Calculation With Numbers Separated By Hyphen

honkin

Active Member
Joined
Mar 20, 2012
Messages
384
Office Version
  1. 2016
Platform
  1. MacOS
I have a sheet which records football results. Without using a helper column, is it possible to calculate the difference in scores listed as such...1-2, 2-3, 0-0 and so on?

I need to be able to do the following:-

If the away team's score is 2 or more greater than the home team, it is a W, otherwise, an L. So 0-2 would be a win, but 0-0 or 0-1 would be a loss

P is the column where the scores are stored. I know the textsplit function can help to do things like SUM numbers separated by a hyphen =SUM(--(TEXTSPLIT(P2,"-") but how to do what I am after?

Any help gladly accepted
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
You don't have TEXTSPLIT available in your version of Excel. Try:
Excel Formula:
=IF(MID(P2,SEARCH("-",P2)+1,99)-LEFT(P2,SEARCH("-",P2)-1)>=2,"W","L")
 
Upvote 1
.. or perhaps you do have the TEXTSPLIT function and need to update your profile to show your current version?
 
Upvote 0
You don't have TEXTSPLIT available in your version of Excel. Try:
Excel Formula:
=IF(MID(P2,SEARCH("-",P2)+1,99)-LEFT(P2,SEARCH("-",P2)-1)>=2,"W","L")
Nailed it. It turned out Textsplit is not available in my MacOS version, but this works perfectly

Thanks so much
 
Upvote 0
You’re welcome. Thanks for the feedback.
ah, one slight hitch
It worked on all results, except 0-1 and also 1-2. I just input the result from overnight, which was 0-1 and it put a L instead of a W.
So it worked on 1-4, 0-2, 1-0, 1-1....pretty much everything else. It seems anything with a single goal the difference to the away side fails.
It's OK, though. I experimented with it and changed the >=2 to >=1 and it now seems fine.
Cheers
 
Upvote 0
Glad you got it sorted. Just noting though your original post says:
You're spot on and just realised my error. I was looking at the column for away win, yet working in the column where it needed to be a win by 2 or more. You original code was fine and I changed it back. The false economy of working till midnight...my brain was fried
So with your same code, how would it be tweaked to have the second score be larger than the first score for a W and if not...a L?
 
Upvote 0
Confirming - if the second (away) score is larger than the first (home) score by any amount, then W otherwise L?

Excel Formula:
=IF(MID(P2,SEARCH("-",P2)+1,99)>LEFT(P2,SEARCH("-",P2)-1),"W","L")
 
Upvote 0
Solution
Confirming - if the second (away) score is larger than the first (home) score by any amount, then W otherwise L?

Excel Formula:
=IF(MID(P2,SEARCH("-",P2)+1,99)>LEFT(P2,SEARCH("-",P2)-1),"W","L")
Yes, away score larger than the first by any amount.
Thanks so much...you've been able to solve 2 issues in the blinking of an eye
Cheers
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,173
Members
451,543
Latest member
cesymcox

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top