Forum Widgets
Latest Discussions
Formula Help for Sorting
Hi all! I am looking to find a formula that will do a multitude of things. One is to sort a column of numbers by the last 2 digits of the values input but by a particular order such as 00-14, 15-29, 30-42. Secondly, once sorted by this grouping, I want to assign it to a particular department based on said sort (Dept 1, 2, 3 and so forth. I have attempted to use the VLookup formula that Google AI gave me to no avail. I received an error. Also with a IF formula and haven't been able to figure out how to make this work. Any help would be greatly appreciated!SolvedJenniL0211Jan 12, 2026Copper Contributor149Views0likes4CommentsWant a formula result to update across Sheets?
I have figured out how to get a formula result to appear in multiple sheets. The formula for example that gets pasted into sheets references a result! I enter formula and (B5) is where the sum location of =sum(b1:b3) will be delivered' I create a new formula that will reference previous calculation label this in cell B7 =Aux!B5 I use =Aux!B5 where Aux is the sheet where all calculations take place and this result will want to appear in selected work sheets Then i select sheets (using Shift+ selected sheets) then in first sheet of selected sheets I select a location and paste V (value) i get the result across all selected tabs. Here is my question ! how do i get a location to update all worksheets with a value from a formula from sheet Aux? I want to be able to change the Value in Aux (sheet where all calculations occur), then have that new value appear where former locations were pasted the result. (this should put result in B22 Ex: i create a total =sum(B1:B3) (in A22 of the aux sheet ) that result i put in a new location with a new formula so new location ( B22) formula =aux!A22 It is this location that if i change a value in origional EX: b1 from 3 to 5 the result is updated in B22 but it will not update the sheets with =aux!B22 hope not to confusingSolvedCremeStoutJan 09, 2026Copper Contributor141Views0likes5CommentsTop n vs. Others in Excel
Hi all, I'm seeking some help because I'm kind of new to the more intermediate stuff in Excel. I have an Excel table with the following columns: Subcategory in column A, Brand in column B, Region in column C, Year in column D and Values Month in column E. I want to create a PivotTable and a Pivot line chart from this PivotTable that ranks the Top 5 Brands vs. Other Competitors by each region. For added context: There are 5 subcategories, 3 regions and 25 brands. Currently, I've tried grouping the remaining 20 brands as "Other Competitors" vs. the Top 5 brands within a selected region and possibly all regions (when no selection is made). I'm seeking a solution similar to this... Please mind the colours. I will sort those out later. But, the problem that I'm faced with is that upon selection of a region, the PivotTable won't update to the Top 5 brands of a selected region because they've already been grouped. How can I make this more dynamic so that I'm able to show The Top 5 brands vs. Others? Please help. EDIT: My operating system is Windows 10 (64-bit) and I use Excel 365 (Desktop version). For reference, I've attached a link to a sample file. https://1drv.ms/x/c/b2d878e32a062614/IQC1wcnwLICcQasOfnGcwKn0ASjpXp9xQ6rjnOP10Jal5cc?e=HaXEWd Thank you all once again.SolvedAnonymous29007Jan 09, 2026Copper Contributor275Views2likes11CommentsPLEASE HELP ME. Excel Time Formatting Not Working?
PLEASE HELP ME!!! I created an excel workbook for tracking fitness workouts, I record the data such as weight lifted, number of reps, and rest times between sets. I formatted the cells so they express your rest times in terms of minutes and seconds (I used the custom "H:MM" format of time option). But whenever I record the amount of time you spend during cardio exercise, the formatting gets COMPLETELY SCREWED UP because when I type 28:44 (28 minutes and 44 seconds) of cardio duration, it instantly turns into 4:44 (4 minutes and 44 seconds). But if I type 20:00 (20 minutes) of cardio duration, it stays as 20:00 (20 minutes) and it never turns into something else. Why do some of the numbers like 28:44 transform into a complete different number when I enter them? I uploaded 3 screenshots below to better express what I mean. 'SolvedCGKalexanderJan 08, 2026Copper Contributor138Views0likes4CommentsExcel ignoring part of formula
=IF(F3="","",IF(F3-G3=0.01,1,IF(F3>G3,3,IF(F3=G3,1,IF(F3<G3,0))))) My cells F3 & G3 refer to a match score, with the Result showing (in Cell AM3) being 3pts for a win, 1 point for a Draw, and 0 for losing. Therefore if F3 and G3 are equal (45-45) it does show 1 in AM3 Due to the vagaries of our sport, I also want a score of 45.01- 45 to show as a draw an AM3, hence my formula attempt in AM3:- =IF(F3="","",IF(F3-G3=0.01,1,IF(F3>G3,3,IF(F3=G3,1,IF(F3<G3,0))))) but AM3 shows the result as a Win (3pts) as if it is ignoring my initial F3 statement F3-G3=0.01. Can anybody help? ThanksSolvedGamboJan 08, 2026Copper Contributor64Views0likes3CommentsDisappearing Script Button
In the online version of excel, I have a script button keeps disappearing. This same button is fine on desktop and I don't believe this was a problem before. When I load the page it isn't there. I found that if I added another button on another sheet in that workbook, that when I switch to that sheet and then I return to the first sheet the button returns, but if I refresh the page again, the button disappears. If I switch to a tab without a script button then the button does not return. i have tried minimizing the browser, changing zoom levels, scrolling and such but the only thing I have found to make the button re-appear is switching to another sheet that has a script button on it (I created a 'dummy button' on that sheet). I don't know why this button that I need disappears while that 'dummy' button I put on the other tab doesn't disappear and I don't know why having that other button makes it reappear by just switching to that tab and back. a) has anyone else experienced any problem like this? b) does anyone have any ideas to try or why it is happening? thank you.Solvedm_tarlerJan 07, 2026Bronze Contributor88Views0likes4CommentsIs there a way to work around Circular reference in Dynamic Array?
Hi! I am trying to convert a table into a dynamic array, but the rows in the table is referring to other column's previous row value, so when I try to convert it into a dynamic array, it'll become a circular reference. Is there a way to work around it? I attached the example excel file to this post for your reference. This is just a simplified example of the actual table I am trying to convert. I tried the "Iterative Calculation" option , the calculation will be correct. But the problem is, the original excel table in my case is very complicated, so even if I set the "Max calculate times" to 10,000, the calculation can not be finished, leaving at least half of the values wrong. My alternative approach is to solve this half dynamically. But I consider it ugly... Leaving only col1 dynamic, and other columns will have to fill down the formula to "row 1048576", which is not pretty. (col1 is actually referring to other places in the real case) Is there a way to work around this and make the table fully dynamic? Thank you! Best Regards, AlanSolvedAlphaEraJan 05, 2026Brass Contributor108Views0likes4CommentsGetting the Same Range from an List of Sheets that Match a Variable
Put simply, I have an indefinite number of sheets that regard different people. I need to collect the same range from each sheet that reference a specific person. I.E. Collect A1:B10 from all sheets about Bob, and put them all in a single sheet. I tried to use FILTER to narrow down sheets to the ones where the name cell matched a certain value, and then VSTACK that range from all filtered sheets. But I couldn't get the formatting right, and I'm not sure if that's the right approach. Any help is greatly appreciated.SolvedUnstableMangoJan 05, 2026Copper Contributor100Views0likes5CommentsConditional Formatting multiple conditions
Hey all! I need some help writing a formula for some conditional formatting I'm looking to do for a contact log. Basically, I want to highlight dated cells if the interaction with a contact is -14 days and -21 days from today's date. I've figured that out and am using the formula =DATEDIF($E7,$F$1,"D")>14 and =DATEDIF($E7,$F$1,"D")>21 However I also want to run conditional formatting so that the cells only highlight when the Contact info in the log is a unique value, and this is what I'm currently struggling with. For Confidentiality, I can't show the values populated in the Contact Column, but I can show an example of my table's columns if that helps. So in essence, I want the date formatting to run only if the contact value is a unique value, so that it is not flagging an old log of an interaction and only flagging the most recent interaction with that contact name if it is dated past 2-3 weeks. Is there anything I can build that will operate in this way? Thanks!SolvedayylmaobirdyJan 03, 2026Copper Contributor65Views0likes2Comments
Resources
Tags
- excel43,529 Topics
- Formulas and Functions25,230 Topics
- Macros and VBA6,533 Topics
- office 3656,257 Topics
- Excel on Mac2,711 Topics
- BI & Data Analysis2,461 Topics
- Excel for web1,992 Topics
- Formulas & Functions1,716 Topics
- Need Help1,703 Topics
- Charting1,682 Topics