Jun 13 2023 04:21 AM - edited Jun 13 2023 04:22 AM
I have a spreadsheet I have downloaded.
It is a report showing the individual card payments taken over a period of a year.
It has 17000 rows and 2 columns
First column has dates
Second comumn has amounts
I need to be able to get daily totals of the card payments taken over that year. One day might have 30 card transactions and another might have 5.
I have tried a pivot table it only showed me monthly yearly and quarterly totals and I need daily.
Any help greatly appreciated
Jun 13 2023 06:05 AM
To calculate daily totals of card payments from your report, you can use the SUMIFS formula in Excel. Here is how you can do it:
Assuming your dates are in column A and amounts are in column B, and your data starts from row 2, you can follow these steps:
=SUMIFS($B$2:$B$17001,$A$2:$A$17001,A2)
This formula sums the amounts in column B where the date in column A matches the date in the current row.
Alternatively, if you prefer a pivot table to summarize the data, you can follow these steps:
These methods should help you obtain the daily totals of card payments from your report. Choose the one that suits your preference and reporting needs.
If you need more help, please include the following info to help others answer your question:
Jun 13 2023 06:11 AM - edited Jun 13 2023 06:12 AM
You can use a PivotTable. Note that the default behavior of a Pivot is to auto-group the dates to cleanup the row labels. Right-click a date and choose to ungroup to get desired appearance.
Jun 13 2023 06:19 AM
An alternative to a pivot is to use a formula like this:
=LET(
uDate, UNIQUE(date),
totals, SUMIF(date, uDate, payment),
HSTACK(uDate, totals)
)