How can I use the Find function to find the results of a formula in another cell?

USAMax

Well-known Member
Joined
May 31, 2006
Messages
843
Office Version
  1. 365
Platform
  1. Windows
I have several cells that show Payment 1, Payment 2, Payment 3 and so on depending on values in another cell. If I manually change the cell all of the following cells will adjust to show that the current cell is not a payment.

Cell C13

=IF(ISBLANK(C9), "", addth(A13) & " Payment:")



I need another cell to see if the word, “Payment” is in the cell. If it is then it does one thing, else it will do something else.

=IF(C13=0, "",IF(ISERROR(FIND(B13, "Payment", 1)), C9, C9-C13))



How do I get the FIND command to see “Payment” within the results of the formula in C13 or “Payment” in in the formula cell C13.
 

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.
How about
Excel Formula:
=IF(C13=0, "",IF(ISERROR(FIND("Payment", C13)), C9, C9-C13))
 
Upvote 0

Forum statistics

Threads
1,214,784
Messages
6,121,536
Members
449,037
Latest member
tmmotairi

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