formula that will indicate something in column

mark692

Active Member
Joined
Feb 27, 2015
Messages
321
Office Version
  1. 2016
Platform
  1. Windows
hi guys i want a formula in column "remarks" that will indicate "Paid" if a name on column "Name" has a "cash" on "Payment" like in this sample thanks!

Book1
DEFG
1dateNamePaymentRemarks
24/1/2020JonNonePaid
34/1/2020JonCashPaid
44/2/2020MikenonePaid
54/3/2020MikenonePaid
64/4/2020MikeCashPaid
74/5/2020DonnaCashPaid
84/6/2020MinaNone
Sheet1
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
=if(OR(F2="Cash",F2="Payment","Paid",""))

like that, it may need brackets changing
 
Upvote 0
Hey Mole999,

I think that the OP is referring to "Payment" as being the header. I could be wrong but that's how I interpret his explanation.

Perhaps:-

=IF(F2="Cash","Paid","")

Don't be afraid to scold me if I'm wrong!

Cheerio,
vcoolio.
 
Upvote 0
Hey Mole999,

I think that the OP is referring to "Payment" as being the header. I could be wrong but that's how I interpret his explanation.

Perhaps:-

=IF(F2="Cash","Paid","")

Don't be afraid to scold me if I'm wrong!

Cheerio,
vcoolio.

thank you i used your formula but it didnt give all the name paid
ex.

the name Mike should have a "Paid" remarks in G4 and G5,

Book1
DEFG
1DaeteNamePaymentRemarks
24/1/2020JonNone 
34/1/2020JonCashPaid
44/2/2020Mikenone 
54/3/2020Mikenone 
64/4/2020MikeCashPaid
74/5/2020DonnaCashPaid
84/6/2020MinaNone 
Sheet1
Cell Formulas
RangeFormula
G2:G8G2=IF(F2="Cash","Paid","")
 
Upvote 0
Hello Mark,

From what I understand from your opening post, you only need "Paid" in Column G if "Cash" is entered in Column F.
Is this correct?

Cheerio,
vcoolio.
 
Upvote 0
Hello Mark,

From what I understand from your opening post, you only need "Paid" in Column G if "Cash" is entered in Column F.
Is this correct?

Cheerio,
vcoolio.

i want "paid" in column G if the name on in column E has a "Cash" on column F, that is what i mean sir :)
 
Upvote 0
Hello Mark,
Rich (BB code):
"i want "paid" in column G if the name on in column E has a "Cash" on column F, that is what i mean sir"

If we remove the excess prepositions, which are causing confusion, from your last reply:-

Rich (BB code):
"i want "paid" in column G if the name in column E has "Cash" in column F, that is what i mean sir "

you'll be able to see that the formula in post #3 does exactly what you ask.

Other than that, did you try the formula that mrshl9898 supplied in post #5?

Cheerio,
vcoolio.
 
Upvote 0
Hello Mark,
Rich (BB code):
"i want "paid" in column G if the name on in column E has a "Cash" on column F, that is what i mean sir"

If we remove the excess prepositions, which are causing confusion, from your last reply:-

Rich (BB code):
"i want "paid" in column G if the name in column E has "Cash" in column F, that is what i mean sir "

you'll be able to see that the formula in post #3 does exactly what you ask.

Other than that, did you try the formula that mrshl9898 supplied in post #5?

Cheerio,
vcoolio.
i see to make it more clearly, i want a "paid" on all of the same name if one of them in column E has "cash", like my sample table on post number 1
 
Upvote 0
How does Post #5 not suit your needs?

Book5
DEFG
1DateNamePaymentRemarks
24/1/2020JonNonePaid
34/1/2020JonCashPaid
44/2/2020MikenonePaid
54/3/2020MikenonePaid
64/4/2020MikeCashPaid
74/5/2020DonnaCashPaid
84/6/2020MinaNone 
Sheet1
Cell Formulas
RangeFormula
G2:G8G2=IF(COUNTIFS(E:E,E2,F:F,"cash")>=1,"Paid","")
 
Upvote 0

Forum statistics

Threads
1,214,823
Messages
6,121,777
Members
449,049
Latest member
greyangel23

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