sosag39575

New Member
Joined
Dec 18, 2019
Messages
3
Hi,

I have an hard time being able to figure out a solution to my issue and would like to see if anyone can help or has ideas of how this challenge can be resolved.

I am trying to find a formula that is able to tell me if a cell has changed from a number to a text (horizontally) resulting in saying Yes or No (column F should show the result)

.
ff.JPG


Your help is appreciated
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Hi, welcome to the forum!

Here is one option you can try.

Book1
ABCDEF
1Date 1Date 2Date 3Date 4Date 5Flipflopped
2OK5060OK20Yes
35060506040No
4OKOKOKOKOKNo
52030OKOKOKYes
6OKOKOKOK55Yes
750OKOKOKOKYes
Sheet1
Cell Formulas
RangeFormula
F2:F7F2=IF(OR(COUNTIFS(A2:E2,{"*","<9.99E+307"})=COLUMNS(A2:E2)),"No","Yes")
 
Upvote 0
Thank you but I forgot to add the most important item :(. It will not tell you that it flipped if it was consistently OK for the more recent dates (right to left). Here is an updated example.

ff.JPG
 
Upvote 0
Hi, welcome to the board!

Another way

Book1
ABCDEF
1Date 1Date 2Date 3Date 4Date 5Flipflopped
2OK5060OK20Yes
35060506040No
4OKOKOKOKOKNo
52030OKOKOKNo
6OKOKOKOK55Yes
750OKOKOKOKNo
8OKOKOK20OKYes
920308080OKNo
Sheet5
Cell Formulas
RangeFormula
F2:F9F2=IF(IFERROR(MATCH("*",A2:E2,0),6)<IFERROR(MATCH(9.99E+307,A2:E2,1),0),"Yes","No")
 
Upvote 0
I'm glad to help you. Thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,213,536
Messages
6,114,210
Members
448,554
Latest member
Gleisner2

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