Hi guys,
(I apologize ahead of time for over-explaining! I just don't know how else to explain what i'm looking at and doing)
I have an accounting forecast that consists of a large table of transactions + expected transactions, which is then set up into a pivot table.
My pivot table shows per day what bills have been paid and what are still due,
Now my boss needs it so that I take the Sum Total of each date on my pivot table to make a different forecasting chart on the side.
**MY QUESTION: How do I translate the sums generated by the pivot table to be a formula in a cell?
The main problem is that my pivot table is FILTERING OUT some of the transaction items (TYPE of Bill, Column C) on my main table so that it not indicating bills or fund transfers that are not essential to my boss.
HOW MY DATA IS SET UP:
Data source of pivot table of bills still due daily: TABLE NAME: Transactions_ALL
* This table is all transactions occurring in our bank account PLUS forecast of all expected bills for the year. Example: Rent PAID on 12/1 is
--Column A: Date
--Column B: Description of Bill (ex: Comcast, Rent, GA Power)
--Column C: Type of Bill (example, "Pending Bill Out", "Received Invoice", "Transfer to Savings", "Funds Paid") - I currently have about 10 labels of types
--Column D: Remaining Due ($$)
--Column E: Sum Paid
Example:
A: 12/1/17 B: RENT C:Funds Paid D:$0.00 E:$1000
B: 1/1/18 B: RENT C:Pending Bill Out D:$1000.00 E:$0
My Pivot table puts this data in a nice setup. Its
Report Filters: Year, Month, TYPE, showing only Pending Bills Out, Past Due, Payroll
Columns: Values
Rows: Date, Description
Values: Remaining Due
EXAMPLE:
12/20/2017 REMAINING DUE
--Comcast $100
--GA Power $50
-TOTAL $150.00
12/21/17
--Gas Bill $50
--Car Service $200
-Total $250.00
WHAT I NEED IN THE FORMULA EQUATION: I'm trying to make a formula equation that sums up the Remaining Due(TOTAL by Date) with the exact filters I have of the TYPE filter in my pivot table.
I think I need to use a "SumProduct" formula, but I can't figure out how to have the criteria sum multiple criterias.
I've gotten THIS FAR : =SUMPRODUCT(--(TRANSACTIONS_ALL[date]=TODAY()),--(TRANSACTIONS_ALL[TYPE]="Pending Bills Out"),TRANSACTIONS_ALL[REMAINING DUE])
--The result is correct in summing the remaining due of all expected or paid transactions TODAY, labelled as TYPE "Pending Bills Out".
--QUESTION: How do I get it to sum multiple types: Pending Bills Out + Past Due + Payroll
Anything you can do to help is appreciated!!
Val
(I apologize ahead of time for over-explaining! I just don't know how else to explain what i'm looking at and doing)
I have an accounting forecast that consists of a large table of transactions + expected transactions, which is then set up into a pivot table.
My pivot table shows per day what bills have been paid and what are still due,
Now my boss needs it so that I take the Sum Total of each date on my pivot table to make a different forecasting chart on the side.
**MY QUESTION: How do I translate the sums generated by the pivot table to be a formula in a cell?
The main problem is that my pivot table is FILTERING OUT some of the transaction items (TYPE of Bill, Column C) on my main table so that it not indicating bills or fund transfers that are not essential to my boss.
HOW MY DATA IS SET UP:
Data source of pivot table of bills still due daily: TABLE NAME: Transactions_ALL
* This table is all transactions occurring in our bank account PLUS forecast of all expected bills for the year. Example: Rent PAID on 12/1 is
--Column A: Date
--Column B: Description of Bill (ex: Comcast, Rent, GA Power)
--Column C: Type of Bill (example, "Pending Bill Out", "Received Invoice", "Transfer to Savings", "Funds Paid") - I currently have about 10 labels of types
--Column D: Remaining Due ($$)
--Column E: Sum Paid
Example:
A: 12/1/17 B: RENT C:Funds Paid D:$0.00 E:$1000
B: 1/1/18 B: RENT C:Pending Bill Out D:$1000.00 E:$0
My Pivot table puts this data in a nice setup. Its
Report Filters: Year, Month, TYPE, showing only Pending Bills Out, Past Due, Payroll
Columns: Values
Rows: Date, Description
Values: Remaining Due
EXAMPLE:
12/20/2017 REMAINING DUE
--Comcast $100
--GA Power $50
-TOTAL $150.00
12/21/17
--Gas Bill $50
--Car Service $200
-Total $250.00
WHAT I NEED IN THE FORMULA EQUATION: I'm trying to make a formula equation that sums up the Remaining Due(TOTAL by Date) with the exact filters I have of the TYPE filter in my pivot table.
I think I need to use a "SumProduct" formula, but I can't figure out how to have the criteria sum multiple criterias.
I've gotten THIS FAR : =SUMPRODUCT(--(TRANSACTIONS_ALL[date]=TODAY()),--(TRANSACTIONS_ALL[TYPE]="Pending Bills Out"),TRANSACTIONS_ALL[REMAINING DUE])
--The result is correct in summing the remaining due of all expected or paid transactions TODAY, labelled as TYPE "Pending Bills Out".
--QUESTION: How do I get it to sum multiple types: Pending Bills Out + Past Due + Payroll
Anything you can do to help is appreciated!!
Val