User Profile
Ilgar_Zarbaliyev
MCT
Joined 6 years ago
User Widgets
Recent Discussions
Re: How to find top 3 from each category using Excel dynamic formula?
By the way, ChatGPT recommended the following solution : =LET( srcNames, $A$2:$A$20, srcVals, $B$2:$B$20, u, UNIQUE(srcNames), n, ROWS(u), repNames, SORT(INDEX(u, MOD(SEQUENCE(n*3)-1, n)+1)), ranks, MOD(SEQUENCE(n*3)-1, 3)+1, percs, MAP( repNames, ranks, LAMBDA(nm,k, LARGE( FILTER(srcVals, srcNames = nm), k ) ) ), HSTACK(repNames, percs) ) This is one formula that provides your desired output.3Views0likes0CommentsRe: How to find top 3 from each category using Excel dynamic formula?
It might not be exactly as you requested, but I kept the solution in two steps to keep it simple. Social Media =SORT(LET( u, UNIQUE($A$2:$A$20), n, ROWS(u), INDEX(u, MOD(SEQUENCE(n*3)-1, n)+1) )) Percent =LET( nm,H2, k, COUNTIF( H2:$H$2, nm), LARGE(FILTER($B$2:$B$20, $A$2:$A$20=nm), k) )3Views0likes0CommentsRe: Formula with Multiple Date Ranges
Atira_Syafiqah_7393 Please find solution below: =IF(AND(A12>=DATE(2022, 3,2),A12<=DATE(2022, 8,3)), "Chair",IF(AND(A12>=DATE(2022, 8, 4), A12<=DATE(2022, 12, 9)),"Table",IF(AND(A12>=DATE(2022, 12, 10), A12<=DATE(2023, 4,4)), "Glue", ""))) Sample file is attached to this message. I hope it will help you.31KViews0likes1Comment- 1.8KViews0likes0Comments
- 1.9KViews0likes2Comments
Re: Date/Time Stamp a Changed Excel Entry
This is how it should be, because the Now function is a Volatile function. As time changes constantly, the Now function will also change constantly. Changes in any cell of the Tab (Worksheet) you are in will update the Now function. As far as I understand, you want the date of the change to remain constant. Right?6.1KViews0likes0Comments- 1KViews0likes0Comments
Re: Sum up customer specific costs from another table
Hi there, It would be better to have excel file itself. What I would like to ask is related to Excel version which you use. If this version is 2016 and previous ones, you may use CSE (Control+Shift+Enter) combination for Array Formulas.1.5KViews0likes1Comment
Recent Blog Articles
No content to show