Help with IF formula for multiple criteria and outcomes

TheRumBaron

New Member
Joined
Jan 3, 2023
Messages
2
Office Version
  1. 2021
Platform
  1. Windows
Hi All,

I am trying to create a sports betting slip, similar to a normal coupon from a book makers, which I can update during the match, and it will show the overall status for the bet...see pics below for better explanation :D

1672772750696.png



In the 'BET RESULT" I have used the following formula -
Excel Formula:
=IF(COUNTIFS(D4:D5,"<>"&"",D4:D5,"<>"&"WON",D4:D5,"<>"&"VOID"),"LOST","WON")

The only issue I have, is that when a Result Cell is blank, the bet result states 'WON' (example Coupon 3), I would like to make it, so that if a cell (in the result column) is Blank, then it will automatically change the bet result field to 'IN PLAY'

I am awful at explaining, but hopefully this provides enough info! :)

Any help would be massively appreciated!
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
try something like this:
Excel Formula:
=IF(OR(D4="",D5=""),"In Play",IF(COUNTIFS(D4:D5,"<>"&"",D4:D5,"<>"&"WON",D4:D5,"<>"&"VOID"),"LOST","WON"))
 
Upvote 0
Solution

Forum statistics

Threads
1,215,482
Messages
6,125,058
Members
449,206
Latest member
Healthydogs

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