IF statement- AND & OR Function

pto160

Active Member
Joined
Feb 1, 2009
Messages
473
Office Version
  1. 365
Platform
  1. Windows
I download a receipt report showing receipts with order numbers. Column A has type Sale and Credit. I wrote a IF statement in column E where it tells me that there is a sale that had a credit with the same order number, and if it did not it would say "No Credit". I am combining column A and B because there could be 50K rows in the report. Here it is.
Book1
ABCDE
1TypeOrderAmountCol A & B
2Sale314200100Sale-314200Sale/Credit
3Sale312800200Sale-312800No Credit
4Credit314200300Credit-314200No Credit
5Sale312900400Sale-312900No Credit
Sheet1
Cell Formulas
RangeFormula
D2:D5D2=A2&"-"&B2
E2E2=IFNA(IF(MATCH(IF(A2="Sale","Credit-"&B2,"Sale-"&B2),$D$2:$D$5,0)>0,"Sale/Credit"),"No Credit")
E3:E5E3=IFNA(IF(MATCH(IF(A3="Sale","Credit-"&B3,"Sale-"&B3),D3:D6,0)>0,"Sale/Credit"),"No Credit")



Is this the most efficient formula?

Now the new problem I am having is I am adding "Auth" to the Type column. The IF statement choices are Auth/Sales/Credit if the order numbers have all three types for the same order number. Sale/Credit if if they have Sale/Credit only. The next one is Sale only for the same order number and then Auth only if it doesn't have any credit or sale, and then Auth/Sale. Here is the table. I sorted it to make it easier for someone to help me. My table won't be sorted.

Book1
ABCDE
1TypeOrderAmountCol A & BResult I Want
2Sale312800200Sale-312800Sale
3Credit312900500Credit-312900Sale/Credit
4Sale312900400Sale-312900Sale/Credit
5Auth314200100Auth-314200Auth/Sale/Credit
6Sale314200100Sale-314200Auth/Sale/Credit
7Credit314200300Credit-314200Auth/Sale/Credit
8Sale315100100Sale-315100Sale/Credit
9Credit315100200Credit-315100Sale/Credit
10Auth318100200Auth-318100Auth Only
11Auth320100500Auth-320100Auth/Sale
12Sale320100500Sale-320100Auth/Sale
Sheet1 (2)
Cell Formulas
RangeFormula
D2:D12D2=A2&"-"&B2
 

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.
can you have
the following combinations

A countif may work
Auth/Sale/Credit
Sale/Credit
Auth/Sale
Auth/Credit
Sale Only
Auth Only
Credit Only
I assume some are impossible
=IF(COUNTIFS(A:A,"sale",B:B,B2)+COUNTIFS(A:A,"Auth",B:B,B2)+COUNTIFS(A:A,"Credit",B:B,B2)=3,"Auth/Sale/Credit",IF(COUNTIFS(A:A,"sale",B:B,B2)+COUNTIFS(A:A,"Credit",B:B,B2)=2,"Sale/Credit",IF(COUNTIFS(A:A,"sale",B:B,B2)+COUNTIFS(A:A,"Auth",B:B,B2)=2, "Sale/Auth",IF(COUNTIFS(A:A,"Auth",B:B,B2)+COUNTIFS(A:A,"Credit",B:B,B2)=2, "Auth/Credit",IF(COUNTIFS(A:A,"Auth",B:B,B2)=1,"Auth Only",IF(COUNTIFS(A:A,"Credit",B:B,B2)=1,"Credit Only",IF(COUNTIFS(A:A,"sale",B:B,B2)=1,"Sale Only","")))))))

I have only used column A & B and not combined with a combined countif
COUNTIFS(A:A,"sale",B:B,B2)+COUNTIFS(A:A,"Auth",B:B,B2)+COUNTIFS(A:A,"Credit",B:B,B2)=3,"Auth/Sale/Credit",
COUNTIFS(A:A,"sale",B:B,B2)+COUNTIFS(A:A,"Credit",B:B,B2)=2,"Sale/Credit",
COUNTIFS(A:A,"sale",B:B,B2)+COUNTIFS(A:A,"Auth",B:B,B2)=2, "Sale/Auth",
COUNTIFS(A:A,"Auth",B:B,B2)+COUNTIFS(A:A,"Credit",B:B,B2)=2, "Auth/Credit"
COUNTIFS(A:A,"Auth",B:B,B2)=1,"Auth Only"
COUNTIFS(A:A,"Credit",B:B,B2)=1,"Credit Only"
COUNTIFS(A:A,"sale",B:B,B2)=1,"Sale Only"

Book2
ABCDEF
1TypeOrderAmountCol A & BResult I WantFormula
2Sale312800200Sale-312800SaleSale Only
3Credit312900500Credit-312900Sale/CreditSale/Credit
4Sale312900400Sale-312900Sale/CreditSale/Credit
5Auth314200100Auth-314200Auth/Sale/CreditAuth/Sale/Credit
6Sale314200100Sale-314200Auth/Sale/CreditAuth/Sale/Credit
7Credit314200300Credit-314200Auth/Sale/CreditAuth/Sale/Credit
8Sale315100100Sale-315100Sale/CreditSale/Credit
9Credit315100200Credit-315100Sale/CreditSale/Credit
10Auth318100200Auth-318100Auth OnlyAuth Only
11Auth320100500Auth-320100Auth/SaleSale/Auth
12Sale320100500Sale-320100Auth/SaleSale/Auth
Sheet1
Cell Formulas
RangeFormula
D2:D12D2=A2&"-"&B2
F2:F12F2=IF(COUNTIFS(A:A,"sale",B:B,B2)+COUNTIFS(A:A,"Auth",B:B,B2)+COUNTIFS(A:A,"Credit",B:B,B2)=3,"Auth/Sale/Credit",IF(COUNTIFS(A:A,"sale",B:B,B2)+COUNTIFS(A:A,"Credit",B:B,B2)=2,"Sale/Credit",IF(COUNTIFS(A:A,"sale",B:B,B2)+COUNTIFS(A:A,"Auth",B:B,B2)=2, "Sale/Auth",IF(COUNTIFS(A:A,"Auth",B:B,B2)+COUNTIFS(A:A,"Credit",B:B,B2)=2, "Auth/Credit",IF(COUNTIFS(A:A,"Auth",B:B,B2)=1,"Auth Only",IF(COUNTIFS(A:A,"Credit",B:B,B2)=1,"Credit Only",IF(COUNTIFS(A:A,"sale",B:B,B2)=1,"Sale Only","")))))))
 
Upvote 0
Upvote 0
Great. Thank you so much. That filter function works great :) (y) . It probably is one of the best Excel functions out there. I wrapped it in an unique function because sometimes there would be two credits that would equal the sale amount, and it worked. I suppose in Excel 2016, the function would be very long.
 
Upvote 0
Great. Thank you so much.
You're welcome. Thanks for the follow-up. :)

I wrapped it in an unique function because sometimes there would be two credits that would equal the sale amount
I did wonder about that possibility so, yes, good idea.
Another possibility might be to include the SORT() function as well so that any combination of Types always come in the same order so you wouldn't end up with, for example
Auth/Sale/Credit
Sale/Auth/Credit
Credit/Auth/Sale
etc in various rows

I suppose in Excel 2016, the function would be very long.
?o_O?
 
Upvote 0
That was exactly my next question. The order should be Auth/Sale/Credit. Sale would come after Auth and credit would come after Sale.
Is that possible?

Maybe add a helper column with 1=Auth, 2=Sale and 3=Credit. Then use the sortby function I imagine.
 
Upvote 0
Is that possible?
Yes, that is possible & you can use the helper column or you can build the list into the formula - especially if the list is small like in this case.

IF you have the LET function you can use column D formula with the helper column or column F without the helper.
If you do not yet have the LET function then you can use the column E formula with helper column or a similar modification to above to use without helper.

pto160.xlsm
ABCDEFGH
1TypeOrderAmountResult 1Result 2Result 3Sort Order
2Sale312800200SaleSaleSaleAuth
3Credit312900500Sale/CreditSale/CreditSale/CreditSale
4Sale312900400Sale/CreditSale/CreditSale/CreditCredit
5Auth314200100Auth/Sale/CreditAuth/Sale/CreditAuth/Sale/Credit
6Credit314200300Auth/Sale/CreditAuth/Sale/CreditAuth/Sale/Credit
7Sale314200100Auth/Sale/CreditAuth/Sale/CreditAuth/Sale/Credit
8Credit314200300Auth/Sale/CreditAuth/Sale/CreditAuth/Sale/Credit
9Sale315100100Sale/CreditSale/CreditSale/Credit
10Credit315100200Sale/CreditSale/CreditSale/Credit
11Auth318100200AuthAuthAuth
12Auth320100500Auth/SaleAuth/SaleAuth/Sale
13Sale320100500Auth/SaleAuth/SaleAuth/Sale
Sheet2
Cell Formulas
RangeFormula
D2:D13D2=TEXTJOIN("/",1,LET(UL,UNIQUE(FILTER(A$2:A$13,B$2:B$13=B2)),SORTBY(UL,MATCH(UL,H$2:H$4,0))))
E2:E13E2=TEXTJOIN("/",1,SORTBY(UNIQUE(FILTER(A$2:A$13,B$2:B$13=B2)),MATCH(UNIQUE(FILTER(A$2:A$13,B$2:B$13=B2)),H$2:H$4,0)))
F2:F13F2=TEXTJOIN("/",1,LET(UL,UNIQUE(FILTER(A$2:A$13,B$2:B$13=B2)),SORTBY(UL,MATCH(UL,{"Auth","Sale","Credit"},0))))
 
Upvote 0
Fantastic. Thanks so much. The formula works great.
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,691
Members
448,978
Latest member
rrauni

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