Count Formula One Record With Amount Is E, F, &/or G
Need count formula to count records with amounts in either columns E, F, or G. For example
Need a formula (not VBA) in cell F2 to return a count of 5 records counted that have an amount in column E, F, or G (but only count as one record when amounts exists in multiple columns):
__|____E___|____F___|___G___
_7 | 1200.62 | 1500.53 | -0-
_8 | 1000.00 |________|_1620.00
_9 | 7000.00 |________|________
10 |________|________|________
10 | 2000.00 | 3000.00|________
11 | 8000.00 |________|________
View Complete Thread with Replies
Sponsored Links:
Related Forum Messages:
Count Duplicates As Unique Record, Sum Amount
I have a spreadsheet will a large amount of invoice numbers, some of which are multiple occurrences of the same number. I need to count the duplicates as one unique record and sum but I need to sum the total $ amount of each amount attached to each occurrence. Please look at the sample to see what I mean. W234678 has three amounts that are added to give a total amount for that number and it is added to the count as one record. I had this code kindly borrowed from someone else which helped me find the duplicates but it is not meeting my needs. Dim rCell As Range, rRng As Range, vKey, lrow As Long Set rRng = Range("F2:F199") With CreateObject("Scripting.dictionary") .comparemode = vbTextCompare
View Replies!
View Related
Count The Amount Of Cells In A Column
I am trying to count the amount of cells in a column (Col H) containing data against a certain date which is displayed in another column (Col B) Eg. Col B................-...........Col H 13/06/09.................FIRST LAST 13/06/09................. 13/06/09.................FIRST LAST 20/06/09.................FIRST LAST 20/06/09................. So that in the sheet next to it it would appear: 13/06/09 - 2 20/06/09 - 1 The dates don't appear in row order and the sheet has a filter on it so I am unable to select the Col H and just use COUNTA
View Replies!
View Related
Now() As Record Id; What Record ID Schemes Are Fequently Employed Besides Date/time
I seek advice on using the value of NOW() as a record ID in an address book program. Question #1: Do Excel developers often use a record ID? Question #2: What record ID schemes are fequently employed besides date/time? I have decided to create an Excel address book as an exercise to increase my knowledge of VBA, and also as a useful application for work. I realize that a record ID is not essential in Excel in the way that it is essential in Access, but I feel the need to have some unique ID associated with each address, so that I may have different worksheets, with data related to a given Contact, sort and manipulate it, if necessary, but have the record ID as a way to restore the relationship of rows to a given Contact, and also, as a handy way to examine the data in the date/time sequence in which it was entered. I have experimented with the following code, to assure myself that I can access the number returned by the NOW() function, manipulate it as a string, and format in various ways if necessary. Dim n As Double n = Now() sn = Str(n) p = InStr(sn, ".") first = Left(sn, (p - 1)) l = Len(sn) d = l - p S = Mid(sn, (p + 1), d)....................
View Replies!
View Related
Capping Amount In Formula?
is there a way to create a formula that caps at a certain amount? i am trying to create a spreadsheet for a group of doctors and their insurance coverage. i want to display that a certain amount of coverage caps at a certain price over the course of a number of years. so basically, can i create a formula that automatically adds the data and max's out at a certain number?
View Replies!
View Related
Formula To Zerorize The Amount That Is Within The Threshold Value
my data will look like table below: amount (A1) threshold(10) (B1) threshold(15) (C1) threshold(25) (D1) 9.80 0.00 0.00 0.00 0.26 0.00 0.00 0.00 0.53 0.53 0.00 0.00 0.40 0.40 0.00 0.00 0.77 0.77 0.00 0.00 1.20 1.20 0.00 0.00 0.33 0.33 0.00 0.00 3.40 3.40 0.00 0.00 5.67 5.67 5.67 0.00 4.00 4.00 4.00 0.00 1.20 1.20 1.20 1.20 3.10 3.10 3.10 3.10 0.53 0.53 0.53 0.53 1.73 1.73 1.73 1.73 i need a formula to zerorize the amount that is within the threshold value & just display the same amount as input if exceed. column A is my input, colum B,C,D is my working area where there are few threshold value. for example, the B column give the threshold value = 10, thus cell B2 & B3 were zerorize. ( not B2 only)
View Replies!
View Related
Delete The Formula In The Amount The Unite Price Comes #value
(To keep things simple from left to right Column A-H) The Amount Column seems to be my problem, it has the formula =H98*B98 just a simple multiplication formula to get my unit price x my qty. When I delete the formula in the amount the unite price #value! error goes away. and all that is in the other error box is =IF(P98>0," per piece","") it just puts "per piece" in the box when something is typed. I have a vlookup formula in Column F (thank you VoG) =IF(ISNA(VLOOKUP(E98,Products!$A$34:$I$81,9,FALSE)),"",VLOOKUP(E98,Products!$A$34:$I$81,9,FALSE)) To pull prices from another worksheet.
View Replies!
View Related
Formula To Subtract Invoices From Total Amount Available
I have 2 tables, one with invoices, the other with purchase orders. I would like to have a "PO Amount Remaining" column on the invoice table that looks up the PO listed on the invoice with the PO $ amount on the PO table. Once it is matched, I would like to subtract the total invoices to give me the amount of the PO that is left. Basically I would like the "PO Amount Remaining" column right now to have $4,200 listed in each row for invoices 1 & 2.....
View Replies!
View Related
FORMULA TO ADD AMOUNT BASED ON TWO Or MORE CONDITIONS
i need a formula to add amount based on two or more conditons. From the drop down list on each change i want to do the sum to be displayed in C18; see the attached file for reference. i can do the same thing using pivot tables but i want to the same to be done using the array formulas. Also tell me any other array formulas like this which are useful.
View Replies!
View Related
Formula To Add Amount Of Rows In A Column
I know a bit about excel nut not a hugh amount! i need to know a formula that adds the number of rows used in a column. Does that make sense?? ok NAME rob dave jim darren adam lee i need a formula that will tell me there is 6 rows used in that column (not including the title).
View Replies!
View Related
Unable To Record Error, Long Formula Macro
I am working on using an excel workbook as part of a roll playing game and I am trying to record a macro and then put that in a command button which uses the randbetween, multiple if statements and multiple vlookup functions. I have successfully done similar things by just recording a macro and then pasting that into the VB editor. However this time I get a unable to record macro after putting the formula in the selected cell. I have tried copy and paste and just typing the formula with the same results. Upon executing the formula I then want it to copy and paste special- values the result. I'm assuming I have to put the VB code in manually but when I tried to do the formula I got a syntax error. The worksheet I am working on is named new and I've included the formula in the a text box. I would like the result to show in J12 and be triggered by pressing the cmnbutton in k12.
View Replies!
View Related
Keep Track & Record Linked Formula Cells
I currently have numerous workbooks with linked cells to a master workbook, but the linked cells dont appear to carry over or retain the formating from the master workbook (e.g. font style, bold, underlined, font color, cell color). I make changes quite often to the master workbook and would like the changes carried over to the other workbooks. Does anyone have a script where it would automatically carry over the font formatting? I hope this is understandable.
View Replies!
View Related
Formula To Put An Amount Into A Cell Next To Only Unique Item
Col A contains SS#'s and Col B contains names. Quite often there are duplicates and sometimes triplicates because they may be sending payments for multiple providers. We charge one fee per client (unique SS#), regardless of the number of times they may be on the spreadsheet. I can get a grand total by summing the unique items by using this formula: =SUM(IF(LEN(A2:A4970),1/COUNTIF(A2:A4970,A2:A4970))) and then doing a CTRL-SHIFT-ENTER to put brackets around it so it will "take." However I now need to show the fee by each unique name. Right now I am inserting Col C, typing in 3.00 into C2 and copying on down, but then have to manually remove the amounts in the rows which contain duplicate ss#. Long painful process. How can I put a formula in Col c so that it will only show fee one time by the first unique ss#?
View Replies!
View Related
Formula That Calculates The Total Rent Amount For Particular Dates
I need a formula that calculates the total rent amount for particular dates. Example would be a formula that includes a date starting at the first of the month (October 1, 2009 to September 30, 2010) and also would include a date starting at a date later than the first (October 3, 2009 to September 30, 2010). The figures needed would be the monthly rent (ex: $1,000) and a pro rated rent amout for a lease that starts after the first of the month. The pro rated amount would also have to include the years with a leap year. I have been working on this but I know there has to be an easier way.
View Replies!
View Related
Summation Across Of A Variable Amount Of Columns VBA Formula
I'm trying to enter the summation formula into three columns that vary in placement based on the value of num_objs. Basically, the number of grey columns in each of the three sets will equal num_objs. I want the user to be able to enter values into the grey columns in the middle section and the values of the two rightmost white columns (with '0's in them currently) will change accordingly. My current code is below. However, I keep getting a compile error saying "Expected: end of statement". I've been searching for a solution online for a couple days now, and I don't see how my code is different than what I've been seeing of other people using variables in their formulas.
View Replies!
View Related
Formula Doesn't Provide Amount As Expected
My sheet called 'Report' finds a type using a vlookup. I then have a sheet called labor, where I want to find put the total amount for labor using this formula: '=SUMIF(Report!$K$2:$K$65000;LABOUR;Report!$G$2:$G$65000)', but it only returns a '-'. I want the formula to return total amount from column G, if column K is type 'LABOUR'. Is my formula incorrect?
View Replies!
View Related
Formula Columns Where My Workers Record The Amounts Of Work They Do During The Day
I have three columns where my workers record the amounts of work they do during the day. The columns are labelled as follows: Column A – “Correspondences’’ Column B – “Linking’’ Column C – “Allocating” When a task has been completed an “X’’ is put in the relevant column (which is then summed at the bottom). I use these sums to calculate each workers productivity in the following way – number of “x’’ divided by number of days worked. This is a simple formula, however, each “x” now equates to time – which is causing me problems. An “x’’ is Column A equals 1 hour, Column B 1 hour and Column C 2 hours. I am looking for someone to help me create a formula which will calculate all possibilities in the above situation above. Please bear in mind that a worker can do one of these tasks during the course of a week, two or all three .
View Replies!
View Related
Auto Copy Template On Record Entry & Link Set Cells Back New Record Entry Sheet
I am looking to create a macro that will create a new sheet when data is added on a summary sheet. Example. 1. Summary sheet called "Variations" contains columns that will contain the information needed for new sheet (Columns A to D) 2. When data is entered on "Variations" sheet: Column B, then macro automatically creates new sheet renamed to e.g. VO1 (Number used on "Variations" tab) and is a copy of "Master" tab. 3. Data entered in Column A to D on "Variations" tab is automatically entered onto new sheet created (e.g VO1). Shown is blue on attached file. Additional data is updated on "VO1" sheet and this then links back to "Variations" tab
View Replies!
View Related
Formula To Calculate Percent Change, Varied By Amount Of Months
I need to figure out a formula for cell F17 that will calculate a percentage change only for the months that have data in 2009. The way it is set up right now I have to go in every month and change the cell reference of the formula to include the latest data. Since the 2008 data is totally populated the formula gets messed up if I include the months of 2009 that have not yet occurred.
View Replies!
View Related
Macro To Print Record # To Record#
I'm trying to find a macro that will run allowing the user to select a 'starting record number' and a 'finishing record number' when printing. I have a spreadsheet that feeds from a master list in excel, from over 5000 records. I need to print the s'sheet with any given indivdual record's information at any given time. Individual prints are fine. However if I wanted to print from record number 1500 to record number 3000 it would take me all day. Is there a way I can set up a macro so an option form pops up? allowing selection of "From record" and "to Record" ?
View Replies!
View Related
Formula: Recognise When A Child Equalled Or Bettered A Club Record In An Event
I wrote a formula to recognise when a child equalled or bettered a club record (CR) in an event. However what I neglected to do and cannot work out is for the formula to recognise the new time as the new club record that will then have to be equalled or bettered from then on to be recognised as a club record. For example CR for 70 metres is 9.28 secs. Formula I was working with was IF(ISBLANK(B3),""),IF(B3
View Replies!
View Related
Formula To Show A Date Range Based On The Amount Shown In Another Cell
Attached is a excel file that has a working formula for tracking cashier variances. I edited out names etc. I added a new cell called Track Back on the employee search sheet. What I want to do is only show variances for the amount of days back selected in the Track Back cell. For example if I select the last 30 days, only the last 30 days would show up below in the sheet. I am not sure if this is even possible based on the forumla that is already on the sheet. I couldn't figure out a way of doing it. But there are a lot of people on here much better with excel than me
View Replies!
View Related
Reference Cell & Add Amount If Positive & Subtract Amount If Negative
Im trying to set up an active running inventory sheet where: (A)the progressive daily sheet cells reference back to the corresponding master sheet cells fluctuating the master values, (B) the same progressive daily sheet cells reference back to a cummulative totals-cell based on whether I added or subtracted inventory. I want to make a copy of the blank "sheet 2" with all of the formulas and move it to the end of the workbook each day and enter new values which will reference back to the master sheet so that I can click on a date sheet and see an individual day's values or click on the master sheet to see the fluctuating inventory on-hand and the cummulative +/- totals of all days combined. I've got a couple hundred individual cells to reference. I've tried and tried but I can't make it work. Heres what I need to do: I need to reference individual cells from "sheet 2,3,etc" back to a corresponding cell in a master sheet. But I need the values in each cell in "sheet 2,3,ETC" to increase or decrease the corresponding cell values in the master sheet. For example: If the value in the master sheet B5 is 200. Then in sheet 2, I enter +50 in B5, I need the master sheet cell B5 to increase by 50 to 250. I also need a way to decrease the cell value in the master sheet B5 if I enter a negative value -50 in sheet 2 B5. I also want to know if I can reference the same cell values entered in "sheet 2,3,etc cell B5" back to totals columns C5 for adding inventory or D5 for subtracting inventory in the master sheet where the master totals columns would reflect cummulative totals added or subtracted. For example: if the value in sheet 2 B5 is +50, then the value in Master sheet C5 would add 50 to a progressive total. But if the value in sheet 2 B5 is -50 then the value in master sheet D5 would add -50 to a progressive total.
View Replies!
View Related
Formula That Adds Count But Saves Count So Can Clear Field
I want is a field (e.g Large Parts Used) where I can enter in a number, then basically this number is subtracted from current stock field for Large Parts so I get an updated field of current stock on hand. But what I want to do is once I've entered the number in the Large Parts used field, I can then clear that field but have the corresponding Current stock field to maintain what was last enetered. E.g Large Parts Current Stock = 50 (enter in) Large Parts Used = 2 Large Parts Current Stock = 48 (Clear field where 2 was entered into Large Parts used) (Field still stays at Large Parts Current Stock = 48 although field where 2 was entered was cleared, so need it to save the information so can continually clear and re-enter amounts and have the stock continue to reduce)
View Replies!
View Related
Count If Formula: Count The Number Of Nhew Stores Each Quarter
going down are stores a, b, c, d.... what i'm filing in across is the square feet of each store and what quartr or year each store came into place. so there will either be a 0 or a number Now, I want to be able to count the number of nhew stores each quarter. how do i create a formula that just recognizes it the first time there is a number and not a zero... because i will put the square feet in subsequent quarters after it opens so i can see yearly how many square feet the store had. then also, how can create a button on the page that will say quarterly numbers and a button that is annual. so that i can hide the quarterly columns and just see an annual spreadsheet... and for the quarterly button so i can hide the annuals and just see the quarters....
View Replies!
View Related
Count Formula: Count Total Entries In Columns
I have been using the wrong formula to count total entries in columns and only just found this error. The MAX formula in cell B4 is: =MAX($B$12:$B$36). If the all the rows are full within range F12:F36, then the MAX formula is fine to count the total within range B12:B36 (25) so I thought. But sometimes there are omissions between F12:F36. If there are 2 blank cells anywhere within F12:F36 for example, then B4 needs to show 23 respectively. In the sample WkBk B4 needs to show 8
View Replies!
View Related
Record Macro Gives Message "Unable To Record"
Im trying to record a macro that will enter a formula in a cell each time I run the macro Drop the Lowest2: =IF(ISERROR(AVERAGE((SUM(C5:L5)-MIN(C5:L5)-SMALL(C5:L5,2))/(COUNT(C5:L5)-2))*Scale!$B$2*10),(IF(ISERROR(AVERAGE(C5:L5)*Scale!$B$2*10),"",AVERAGE(C5:L5)*Scale!$B$2*10)),AVERA GE((SUM(C5:L5)-MIN(C5:L5)-SMALL(C5:L5,2))/(COUNT(C5:L5)-2))*Scale!$B$2*10) Drop Lowest1: =IF(ISERROR(AVERAGE((SUM(C5:L5)-SMALL(C5:L5,1))/(COUNT(C5:L5)-1))*Scale!$B$2*10),(IF(ISERROR(AVERAGE(C5:L5)*Scale!$B$2*10),"",AVERAGE(C5:L5)*Scale!$B$2*10)),AVERA GE((SUM(C5:L5)-SMALL(C5:L5,1))/(COUNT(C5:L5)-1))*Scale!$B$2*10) I know I can write the formula in a simpler way, but I was asked to make it like this. The problem is that when I enter the formula in the cell while recording. I got a message: "Unable to record" so this part can't be recorded
View Replies!
View Related
Getting Error "Unable To Record" When Record A Macro
This problem seemed to revolve around "digital signing" with further macro changes done from a different machine (without the proper certificate). Excel warns of the problem and then "unsigns" the project. I've got a problem with spreadsheets that I've been working on. Now, when I tell it to record a macro, I get the macro name, shortcut assignment dialog box and then an error "Unable to record." After "Ok"ing that dialog box, the normal recording macro dialog comes up. Also, lo and behold, there will not be a macro recorded. I've got no protected cells or sheets and it doesn't matter what security level is set. It is a "signed" macro but I can take off the signature and still have the problem. I checked for "Help - About" for deactivated modules and there was none.
View Replies!
View Related
Count If- Formula That Will Count The Number Of Times
in writing a formula that will count the number of times the store is listed (Column B) when it matches with closed (Column C). On the table listed below I will return the data using a match. From this table A B C 1/8/2006 9:45Store 1Closed 1/8/2006 9:57Store 2Closed 1/8/2006 10:05Store 3Closed 1/8/2006 10:09Store 4Closed 1/8/2006 10:15Store 5Closed 1/8/2006 10:24Store 1Closed 1/8/2006 10:36Store 2In Progress 1/8/2006 10:41Store 3In Progress 1/8/2006 10:50Store 4Closed 1/8/2006 10:58Store 5Closed 1/8/2006 10:59Store 1Closed 1/8/2006 11:15Store 2Closed 1/8/2006 11:22Store 3In Progress 1/8/2006 11:24Store 4In Progress 1/8/2006 11:33Store 5Closed 1/8/2006 11:51Store 1Closed 1/8/2006 11:56Store 2Closed 1/8/2006 11:57Store 3Closed 1/8/2006 12:03Store 4Closed 1/8/2006 12:16Store 5Not Started 1/8/2006 12:23Store 1Closed 1/8/2006 12:28Store 2Closed 1/8/2006 12:57Store 3Closed To this table A B C 1/8/2006 9:45Store 15 1/8/2006 9:57Store 24 1/8/2006 10:05Store 33 1/8/2006 10:09Store 43
View Replies!
View Related
Countif Formula: Added The Correct Amount In The Correct Cells
I'm trying to create a formula that will added the correct amount in the correct cells, I have create a dunny sheet in trying to achieve this. If Cell B8:B11 = ABS or Dum that any points won should be added to Cell L8:L11 right now its adding it into K8:K11. If Cell B8:B11 = is Blank any player points should be added to cells K8:K11. I'm using this formula throughout cells K8:K28 =IF(J8>J25,1,IF(AND(J8<>0,J8=J25),0.5,0)) Any thing in red is incorrect anything in blue is what I'm trying to achieve.
View Replies!
View Related
IF Formula: Count % Again
See attached file. There are 10 Cells in column G which are Yes/No. On the Calculation sheet you can see the formulas which gives you the % on Score 1 Sheet. I have one problem which I don't even know if this is possible to resolve. In Cell G12 if it is Yes then you leave G13 blank, if No then you must fill in G13. I was wandering if you look at my current formula on the calculation sheet in cell A4 is there a way where if G12 is yes then you count count 8 cells to gain the % but if G12 is no you count 9 cells to gain the %?
View Replies!
View Related
Count Formula Within Specified Date
i'm having trouble with a counting formula that involves two columns. i need to count the number of times that a unique value from one column occurs/appears in another column (which i'm narrowing down to each month). in column A1 to A5 A1 - r A2 - b A3 - g A4 - r A5 - r and in column B1 to B5 B1 - 4/10/2007 B2- 4/10/2007 B3 - 5/3/2007 B4 - 4/6/2007 B5 - 5/4/2007 i need to know how many times "r" appears within the month of April from these two columns. i have used this formula: =COUNTIF(a1:a5,"*r*")*(((b1:b5>=DATEVALUE("4/1/2007"))*(b1:5
View Replies!
View Related
Formula To Count And Sum
I'm working with an excel file that starts off with two columns and 1300 rows. Employee ID in A and Salary dollars earned in Column B. The total in column B is, let say $60,000,000.00. This is sorted by column B, desending. I've added a third column that tells me what 5% of the $60mil is (c2), C3 = what 10% of 60mil is, C4 = What 15% is, C5 = What 20% of 60mil is...and so on to what 95% of 60mil is in C20. What I'm trying to determine is how many employees take up or make up 5% of the total salary (60mil)?, then how many employees take up 10% of the 60 mil, and so on to 95% of the 60mil.
View Replies!
View Related
Current Count Formula
I need some guidance on creating a formula that will count a total based on 96 cells with numbers. Cells E24:G56 are blank cells at the moment until data is added. Cells E57:G152 are previous scores What I’m trying to achieve is the latest 96 scores, even if I add data into the blank Cell E24:G24
View Replies!
View Related
Count Unique Formula ?
I have a column with names and I would like to count how many names there are in this columns. This is easy but in fact if there is twice the same name the formula will count it twice and I don't want that. Is there a solution to count only the number of persons present in this column without counting twice the same person??
View Replies!
View Related
Reset Count Formula
I have a formula that counts total number matched items. I need revise it so that the count is never greater than 9. I've been trying several ways - but never get the right end results. So if I have 12 items, the answer will show 9 for those rows, then the next set of rows would show a count of 3. Here is the formula that gives me the count =SUMPRODUCT(($J$4:$J$4032=J406)*($B$4:$B$4032=B406)*($K$4:$K$4032=K406))
View Replies!
View Related
Two Special Count Formula
two formulas to search a range containing a unique 9 digit number which contain duplicates and then see if there are one of four values in another column. Column A contains a unique SBI number(9 digits) and will be duplicated. In column E there are a possiblility of 4 other values which are read off a list. These are "Open", "In Progress", "On Hold" and "Closed. SBI's Open Need this formula to everytime it finds a unique SBI it goes to column E and count if any of the duplicate SBI's have Open", "In Progress", "On Hold" task and count it as an SBI which is still OPEN. SBI's Closed Need this formula to everytime it finds a SBI it goes to column E and count if any of the duplicate SBI's have only "Closed" tasks and count that. There are duplicate SBI's because there are "Tasks which are listed under multiple SBI, so an SBI number can have 1 to ? tasks under it. Want to basically count that all tasks under that SBI are closed if they are count it if not it's still open. Have a formula to count the individual SBI already so maybe a only have the SBI closed formula and minus that count against the total SBI's to give the not closed SBI's ? This formula is =SUM(IF(A7:A2732="","",1/COUNTIF(A7:A2732,A7:A2732))) If someone can tell me how without using a Pivot table as I have 260 spreadsheets which need this data and the pivot table takes too much memory.
View Replies!
View Related
Count And Match Formula
In Cell AA8, I need a formula that will read the 3-digit number in Col Z8 and count the number of rows where a match is found. The 3-digit number can be in any form, Ex Cell Z8, 972 can be 729,279. ************************************************************************>Microsoft Excel - Tic-Tac-Toe -1 +1.xlsx___Running: 12.0 : OS = Windows XP (F)ile (E)dit (V)iew (I)nsert (O)ptions (T)ools (D)ata (W)indow (H)elp (A)boutZ8Z9Z10Z11Z12Z13Z14Z15Z16=VWXYZAA811/18/089729727911/17/0843143141011/16/0836036041111/15/0870670611211/14/08067067 1311/13/08143143 1411/12/08603603 1511/11/08729729 1611/10/08534534 Sheet1 [HtmlMaker 2.42] To see the formula in the cells just click on the cells hyperlink or click the Name boxPLEASE DO NOT QUOTE THIS TABLE IMAGE ON SAME PAGE! OTHEWISE, ERROR OF JavaScript OCCUR.
View Replies!
View Related
Count Formula In Row
Trying to get a total formula for these rows..... Row T has 0 thur 9 ---on the left side the total of rows B3 to B12 and F3 to F12 and J3toJ12--Butt C--G--and K change twice a day. Row T is fixed (does not move with the toal of the left... Would a formula work for this????meaning the numbers totaling by themselfs ---like 1 in row C has 3 and 1 in row G has 9 and 1 in row K has 1 = 13 ---which will be putt in row S total. We change the rows twice a day with new results.. Butt Row T is fixed like I said before....with the total... We have three different systems 3digit,4digit,combo hope I explained it right.
View Replies!
View Related
|