Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
44 views

Here is a large spreadsheet with several years' worth of data in a lot of categories. Y = year, M = month, D = day A B C D E 1| Y | M | D | 1 | 2 |... Initial dataset 2| 19 | 1 | 1 | ...
es2377's user avatar
  • 1
4 votes
2 answers
128 views

I was looking to add subtotals to a pandas dataframe - a question which I found to be asked here often. The answers making use of the deprecated pd.append aren't relevant anymore so I figured a more ...
Thomas Petit's user avatar
0 votes
1 answer
109 views

I have a column of data that is populated by a Vlookup. =IFNA(VLOOKUP(A9,'STRUCTURAL E3D DATA'!G$3:J$2000,3,FALSE),"") I need to sub-total this column, but without it just counting all the ...
MickBarrett34's user avatar
0 votes
1 answer
60 views

I've read the answers for group totals with sub-totals. But none of them seem to address the issue of having a NULL label for the grand total. I tried both ROLLUP() and GROUPING SETS but they both ...
Dave Clark's user avatar
1 vote
2 answers
77 views

I've been trying to create an excel analysis with the following statistics for each of the _count columns in my data set: MAX MIN MEAN MEDIAN MODE Furthermore, I have additional requirements that ...
Paul's user avatar
  • 17
-4 votes
1 answer
94 views

I am trying to Subtotal the following function(s): =SUMPRODUCT((B2:B2340<>"")/COUNTIF(B2:B2340,B2:B2340&"")) However, all the Subtotal options are preset functions that ...
Suzannah Gusukuma's user avatar
0 votes
0 answers
70 views

I'm new to Power BI and have come across this issue. In power BI i am working with a csv file called 'EUTaxonomyCSRD'. In the file I have a column called 'Location Name' that defines the location ...
hussain's user avatar
  • 19
1 vote
3 answers
136 views

I have the following set of values: col1 Col2 1 20 2 155 3 170 4 177 5 291 6 559 7 794 8 820 9 1,198 10 1,240 11 1,259 12 1,537 13 1,613 14 1,876 15 1,949 16 1,950 17 2,274 18 2,372 19 2,640 20 3,030 ...
Tyler Depke's user avatar
0 votes
2 answers
106 views

I have a table I want to return the number of all the cells in a column which is equal to "Defined" I don't know to how to refer to the last line of my column in the following formula =...
user3122648's user avatar
0 votes
2 answers
52 views

I have a large set of data that has clients name, product type and then premium. I want to group all the clients products together and then delete any clients where their total premium is more than ...
Jenny's user avatar
  • 1
1 vote
1 answer
158 views

There are about 4000 rows of data, and macro subtotal takes about an hour to run. Doing the subtotal manually takes about 40 seconds. Can anyone help to check my code? Below is my code: Sub XX() ...
user27823887's user avatar
2 votes
3 answers
132 views

My requirement is similar to this question & answer PostgreSQL - Calculate SUM() of COUNT() But need the total by another column I have something similar to this create table Item ( ItemID ...
Ramanan T's user avatar
  • 543
0 votes
0 answers
166 views

INTRODUCTION / DESIRED RESULT I am trying to create a table that automatically updates and that can be filtered. In this table, I want to add a dynamically column total at the end of the 'time ...
FFF-PK's user avatar
  • 1
0 votes
1 answer
97 views

I have a filtered pivot table with multiple fields in the 'rows' section. When you calculate the total of the numbers in the rows, I get a totally different total than what is shown as total in the ...
DutchArjo's user avatar
  • 359
0 votes
1 answer
65 views

I have a long table and want to have a long table with the sum of each column and each row and total sum. AUX Century n launch 19 500 launch 20 500 launch 21 500 throw 21 500 launch 16 153 throw 20 ...
Freya's user avatar
  • 7
0 votes
1 answer
67 views

I am trying to have my on-page subtotal for individual WooCommerce products update on a per-quantity basis. I have found a solution that works perfectly for simple products via the following URL: ...
Ben Stewart's user avatar
-3 votes
1 answer
123 views

I am looking for a workaround to a specific problem - I have spreadsheets with pivot tables that are accessible to people with commenter access. I would like to give them an option to filter some of ...
Mikołaj Gano's user avatar
0 votes
1 answer
134 views

i use java apache poi to generate pivot table and when i use setOutline(false) to let the pivot table show in parallel form rather than in outline form, it will add subtotal row. That's weird. and ...
oymn's user avatar
  • 1
0 votes
0 answers
57 views

I am using the below formula to total the columns from AX4:BI. When I filter by manager, the total stays the same instead of just showing their cost. How can I make the total filter with the selected ...
rookiemistake's user avatar
0 votes
1 answer
93 views

does someone know How I can make the Excel to provide the subtotal based on the Company? When I try the standard subtotal then it does not give me the right subtotal.
TulioVargas's user avatar
0 votes
2 answers
773 views

I'm trying to calculate the average of a filtered list (J23:J1026), but with a condition. The condition is to calculate the average of the values < 0. I was able to get the count of the values < ...
electricar's user avatar
0 votes
2 answers
308 views

I have the following data in column H: =SUBTOTAL(109;H3:H9999) hours 02:15 03:30 03:30 00:15 00:15 02:00 00:30 00:30 04:00 00:30 05:45 02:15 00:30 02:00 01:00 I want to have the subtotal with function ...
dsmf's user avatar
  • 1
0 votes
1 answer
347 views

I need to create a measure having the SUM of the column "Sales" each time a value in the row "Month" appears. `e.g. In a row I have this two values: Sales= 500 Month= April I need ...
Fernando Zopatti's user avatar
0 votes
1 answer
186 views

I have a simple and small file which does some counting in an external workbook. The data in this external workbook is filtered using autofilter (for example: a specific time range). Let's name the ...
DutchArjo's user avatar
  • 359
0 votes
1 answer
60 views

enter image description here I am trying to keep track of inventory and we use the Frebreeze for example, There are 2 cases of 6 so 12 sub total. Lets say we buy 2 of those, and there are two separate ...
bData's user avatar
  • 1
0 votes
0 answers
104 views

this is my code without any error xl = pd.ExcelFile("D:/write_data.xlsx") df = xl.parse("Sheet1") df['C'] = df['C'].astype(str) df = df.groupby(["A", "B", &...
badar Qureshi's user avatar
1 vote
1 answer
457 views

Below are some raw data with related formular: Col A1, A2 & A3: 4, 6 & 12 Col B1, B2 & B3: 100, 150 & 120 Formular: = SUMPRODUCT(B1:B3/A1:A3) I tried to add SUBTOTAL function in ...
Micmic Chen's user avatar
0 votes
0 answers
163 views

I have datas seems like this : We have to calculate the averages of the column "value", however we have to follow the rule : "all component have the same weight in a product, all ...
Michiyo's user avatar
  • 29
1 vote
1 answer
299 views

I'm trying to include subtotals in my pivot_table. Pivot table code # Specify the aggregation functions aggfunc = {'amt': 'sum', 'llp': 'first'} Pivot and calculate aggregated values using aggfunc ...
user18233539's user avatar
0 votes
1 answer
55 views

print("Welcome! Here is today's menu.") print("") print("- Coffee ($2)") print("- Burger ($4)") print("- Juice ($3)") print("- Muffin ($2)&...
newcoder's user avatar
2 votes
3 answers
87 views

id flow amount date 1 IN 100 2023-08-01 2 OUT 100 2023-08-02 3 IN 100 2023-08-03 4 OUT 100 2023-08-04 5 OUT 100 2023-08-05 In a table like above, I want to sum all OUT transactions which take place ...
user16462786's user avatar
-1 votes
1 answer
3k views

From given table i want to count number of text "Yes" from Result column where numeric value is 25 or 35 from number column. I want to use subtotal here as i have to filer data on groups.
Rajiv's user avatar
  • 31
1 vote
1 answer
43 views

I calculated the subtotal with child component by passing the arguments as I could not calculate in the parent component itself. Here I used map method for form input. Now I need to calculate the ...
kishore kumar's user avatar
1 vote
0 answers
63 views

I am new to R and would like some help on the survey function I am using svyby function to do cross tab for example: svyby( ~bmi,~Race, design, svymean, na.rm = TRUE) and getting the result ...
ad9820's user avatar
  • 11
0 votes
1 answer
519 views

I'm very new to DAX and strugglingly to understand how to correctly get subtotals for my formula. My formula correctly calculates at the detail level, but I want it to sum the detail rows for the ...
GayleM's user avatar
  • 21
0 votes
2 answers
58 views

I'm able to add numbers from input to the table on click of a button. But I can't get the total of all the numbers in the table on click of the button. How can I add the numbers of the table row on ...
user avatar
0 votes
1 answer
316 views

I want to display the total price on the button like this "buy now $15" $15 is the total price, now I'm confused about how to do it, I've tried it but the results are not what I want. this ...
Raka Putra's user avatar
0 votes
1 answer
583 views

I've created a simple table and trying to sequence datas with Subtotal (CountA) in my Filter Datas. Datas A: Subtotal with ArrayFormula B: Subtotal without ArrayFormula Here is my exp: https://docs....
Julian-V's user avatar
1 vote
2 answers
82 views

I have a multi-index pivot table looks like the following, where Date is the index, and columns are [country, attributes]: net_supply = pivot_filter.pivot_table(values='Production', index='Date', ...
Canuk688's user avatar
  • 131
0 votes
3 answers
153 views

I am trying to find a replacement for subtotal or aggregate that will sum all cells in a range except those whose column is hidden. Absent the presence of a builtin function I am trying to create my ...
jmt78's user avatar
  • 25
0 votes
1 answer
110 views

I'm trying to get a table to display so that my groups "group" correctly. Below is what I have tried. It runs, but repeats ALL of the ArrestOfficers under each Arrest Dept. For example, ...
MelB's user avatar
  • 183
0 votes
1 answer
162 views

I am trying to create a report that a user can filter using my Index.cshtml. The report is working correctly and I have one total in the footer that works just fine. My issue is that the second total ...
MelB's user avatar
  • 183
2 votes
2 answers
255 views

So I need to calculate a running total of both "sub_total" so both of these prices are added together and display in the "overall_total" variable. Currently, the output is showing $...
Tara's user avatar
  • 21
0 votes
1 answer
426 views

Can anyone help please? When I sum two time value such as 09:00 and 22:30 I can get a result of 31:30 by formatting the cell using [h]:mm:ss. However, whenever I try and do this with a subtotal row on ...
user20901175's user avatar
0 votes
1 answer
380 views

here is my code, i've tried to cummulative the price with quantity per product but still stuck, anyone can solved my problems? i need your help guys, thanks for tryin' my code <td> {{-- <...
TE_ Richo Victor Matheus Hardi's user avatar
0 votes
1 answer
43 views

How can you get/find the sum of all numbers starting with 1 and ending with N using Bash or similar? For example 1 to 50.
Roel Van de Paar's user avatar
1 vote
2 answers
1k views

I've got a dataframe build fromRecordsa django queryset, that I pivot by 2 columns to get a dashboard view of it. I manage to have the global sums byr row and column of the whole table, but I'm trying ...
Ben's user avatar
  • 45
0 votes
0 answers
3k views

I have this table. All of the columns are after measure. As you can see some column totals are shown, some are not. If some total values are correct, others are not (for example,only 3 and 5 column ...
Aaron Ramsey's user avatar
0 votes
0 answers
78 views

Does anyone know of a way to remove the last blue total line? This is the code I currently have: title1 'Physical Exam Results By Patient'; footnote1; proc print data=cert.transvisit1 noobs ...
Beth's user avatar
  • 11
0 votes
0 answers
120 views

I have read multiple answers on here and tried to implement how would i do this? Just want to add a subtotal? =SUMPRODUCT(E$9:E$500,MOD(ROW(E$9:E$500)+1,2))
Edgarallanflow's user avatar

1
2 3 4 5
9