Data info pulled from 2 sheets

Maya Bungol

New Member
Joined
Aug 2, 2022
Messages
7
Office Version
  1. 365
Hi all,

I need help again. I wanna make sure I'm putting the correct formulas. And if anyone can check it that would be perfect! Something is off with my formula because we already have the invoices but the column "Receipts" still shows "Missing".

If there's another formula to use to avoid kicking me out, that would be perfect.

This is the master sheet, where everything shows all the data from other sheets.

STATEMENT REPORT
PaidDiverted From Account NumberPost DateTran DateDiverted From Cardholder NameAmountMerchant NameCC IDReceiptsStatus
552747****29246/30/20226/29/2022CORI BLOXSOM81.00SQ *MR. BURRITOS CCCB01PaidC
552747****29246/30/20226/29/2022CORI BLOXSOM63.00AMZN Mktp US*M07RB14Q3 CCCB01MissingO
552747****82796/30/20226/28/2022CHANCE WEIGHT21.41ALBERTSONS #0009 CCCW01OKR
p552747****15746/30/20226/28/2022SHILOH KERR27.28ALBERTSONS #0043 CCSK01PaidC
552747****23526/30/20226/28/2022ARIS BATISTA9.63SAFEWAY #1160 CCAB02MissingO
552747****08316/30/20226/28/2022TODD OKKEN21.98LEWISTOWN TRUE VALUE CCTO01MissingO
552747****08316/30/20226/28/2022TODD OKKEN42.97LEWISTOWN TRUE VALUE CCTO01MissingO
p552747****70756/30/20226/28/2022MATT BROSSMAN18.99OLD CHICAGO BOZEMAN CCMB01PaidC
p552747****94606/30/20226/29/2022HATTIE REDMON54.85THE TROUGH CCHR01PaidC


This is the statement sheet - the data pulled from here is for the Master sheet (columns C to G ). This is where we base all the transactions.

Tran DateMerchant NameAmountDiverted From Account NumberDiverted From Cardholder Name
6/29/2022SQ *MR. BURRITOS $81.00552747****2924CORI BLOXSOM
6/29/2022AMZN Mktp US*M07RB14Q3 $63.00552747****2924CORI BLOXSOM
6/28/2022ALBERTSONS #0009 $21.41552747****8279CHANCE WEIGHT
6/28/2022ALBERTSONS #0043 $27.28552747****1574SHILOH KERR
6/28/2022SAFEWAY #1160 $9.63552747****2352ARIS BATISTA
6/28/2022LEWISTOWN TRUE VALUE $21.98552747****0831TODD OKKEN
6/28/2022LEWISTOWN TRUE VALUE $42.97552747****0831TODD OKKEN
6/28/2022OLD CHICAGO BOZEMAN $18.99552747****7075MATT BROSSMAN
6/29/2022THE TROUGH $54.85552747****9460HATTIE REDMON


And this invoice sheet is where we confirm if we received or paid the invoices from the transaction sheet.

VendorVendor NameInv DateInvoiceAmountAcctg DateStatus
CCAB02CC ARIS BATISTA x23526/27/2022YOK2206278.017/1/2022Fully paid
CCAB02CC ARIS BATISTA x23526/1/2022SAF22060110.976/1/2022Fully paid
CCAB02CC ARIS BATISTA x23526/14/2022MOD22061411.417/1/2022Fully paid
CCAB02CC ARIS BATISTA x23526/13/2022YOK22061314.547/1/2022Fully paid
CCCB01CC CORI BLOXSOM x29246/21/2022RIS22062171.886/21/2022Fully paid
CCCB01CC CORI BLOXSOM x29246/30/2022AMA22063079.997/1/2022Open
CCCB01CC CORI BLOXSOM x29246/29/2022MRB22062281.006/22/2022Fully paid
CCCB01CC CORI BLOXSOM x29246/21/2022CEN22062183.956/21/2022Fully paid
CCCB01CC CORI BLOXSOM x29246/2/2022ROS22060293.316/2/2022Fully paid
CCCB01CC CORI BLOXSOM x29246/2/2022HAM220602105.146/2/2022Fully paid
CCCB01CC CORI BLOXSOM x29246/9/2022MAP220609145.006/9/2022Fully paid
CCCB01CC CORI BLOXSOM x29246/14/2022STA220614163.986/14/2022Fully paid


If any could help. I really appreciate it!

Thank you! :)
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
I need help again. I wanna make sure I'm putting the correct formulas.
You use the work "formuals" (plural), but I only see the one formula in Col F.

Something is off with my formula because we already have the invoices but the column "Receipts" still shows "Missing".
The "Receipts" column does not have a formula, so the fact that cell contents is a text value of "Missing" is meaningless to me. Since it is not a formula, it will only change if you type something new in the cell, or if you run a VBA routine (that you have not shared) that writes to that cell.
 
Upvote 0
Hi,

Not sure why all the formulas from each column didn't show up. I tried the mini sheet but my computer keeps "not responding" that's why I only did the tables only.
But anyways these are the formulas from the Master sheet of each column.

A = DATA VALIDATION FOR PAID
B =IF(Statement!K262="","",Statement!K262)
C =IF(Statement!D262="","",Statement!D262)
D =IF(Statement!C262="","",Statement!C262)
E =IF(Statement!L528="","",Statement!L528)
F =IF(Statement!F262="","",Statement!F262)
G =IF(Statement!E262="","",Statement!E262)
H =IFERROR(VLOOKUP(F271,KEY!$A$2:$E$151,4,FALSE),"")
I =IF(AND([@Amount]="",[@[Diverted From Account Number]]=""),"",IF(COUNTIFS(TS!A:A,[@[CC ID]],TS!C:C,[@[Tran Date]],TS!E:E,[@Amount],TS!G:G,"Fully paid")>=1,"Paid",IF(COUNTIFS(TS!A:A,[@[CC ID]],TS!C:C,[@[Tran Date]],TS!E:E,[@Amount])=1,"OK","Missing")))
J =IF($J271="Missing","O",IF($J271="Ok","R",IF($J271="Paid","C", "")))
 
Upvote 0
A couple of comments:

1. When using XL2BB, it is important to use the "Mini Sheet" button with the "Cell Formulas" checkbox ticked, not the "Table only" button. This is so that formulas are included along with column and row information. I recommend you go back an re-post your data using "Mini Sheet" to show all the formulas.
1659978952357.png


2. I know that when you are fully involved in a problem, it is easy to forget that other people are not, so take a moment to consider how others might interpret your post. For example, your last post references a several formulas by column letter (A,B,C), but none of the tables you have posted include any column letters. I have no idea if "Vendor" is column A or column Z.

So instead of this:
VendorVendor NameInv DateInvoiceAmountAcctg DateStatus
CCAB02CC ARIS BATISTA x23526/27/2022YOK2206278.017/1/2022Fully paid
CCAB02CC ARIS BATISTA x23526/1/2022SAF22060110.976/1/2022Fully paid
CCAB02CC ARIS BATISTA x23526/14/2022MOD22061411.417/1/2022Fully paid
CCAB02CC ARIS BATISTA x23526/13/2022YOK22061314.547/1/2022Fully paid
CCCB01CC CORI BLOXSOM x29246/21/2022RIS22062171.886/21/2022Fully paid
CCCB01CC CORI BLOXSOM x29246/30/2022AMA22063079.997/1/2022Open
CCCB01CC CORI BLOXSOM x29246/29/2022MRB220622816/22/2022Fully paid
CCCB01CC CORI BLOXSOM x29246/21/2022CEN22062183.956/21/2022Fully paid
CCCB01CC CORI BLOXSOM x29246/2/2022ROS22060293.316/2/2022Fully paid
CCCB01CC CORI BLOXSOM x29246/2/2022HAM220602105.146/2/2022Fully paid
CCCB01CC CORI BLOXSOM x29246/9/2022MAP2206091456/9/2022Fully paid
CCCB01CC CORI BLOXSOM x29246/14/2022STA220614163.986/14/2022Fully paid


Post This:
Book1
ABCDEFG
1VendorVendor NameInv DateInvoiceAmountAcctg DateStatus
21CCAB02CC ARIS BATISTA x23526/27/2022YOK2206278.017/1/2022Fully paid
22CCAB02CC ARIS BATISTA x23526/1/2022SAF22060110.976/1/2022Fully paid
23CCAB02CC ARIS BATISTA x23526/14/2022MOD22061411.417/1/2022Fully paid
24CCAB02CC ARIS BATISTA x23526/13/2022YOK22061314.547/1/2022Fully paid
143CCCB01CC CORI BLOXSOM x29246/21/2022RIS22062171.886/21/2022Fully paid
144CCCB01CC CORI BLOXSOM x29246/30/2022AMA22063079.997/1/2022Open
145CCCB01CC CORI BLOXSOM x29246/29/2022MRB220622816/22/2022Fully paid
146CCCB01CC CORI BLOXSOM x29246/21/2022CEN22062183.956/21/2022Fully paid
147CCCB01CC CORI BLOXSOM x29246/2/2022ROS22060293.316/2/2022Fully paid
148CCCB01CC CORI BLOXSOM x29246/2/2022HAM220602105.146/2/2022Fully paid
149CCCB01CC CORI BLOXSOM x29246/9/2022MAP2206091456/9/2022Fully paid
150CCCB01CC CORI BLOXSOM x29246/14/2022STA220614163.986/14/2022Fully paid
Sheet2
 
Upvote 0

Forum statistics

Threads
1,215,597
Messages
6,125,738
Members
449,255
Latest member
whatdoido

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