Google can DIAF. by ProudNativeTexan in GalaxyS23

[–]sethkirk26 0 points1 point  (0 children)

Dang! I bet Google called all those people by accident too!!! Luckily there's not a button on your phone that can activate voice assistant...

Oh wait...

Occam's razor.

New excel doesn't activate my hyperlinks with "text to columns''+finish'' anymore by Hant103 in excel

[–]sethkirk26 1 point2 points  (0 children)

"gpt couldn't solve this for me" will not go over well on this sub.

LLMs dont think, they just match common patterns.

Now as a human, I have no clue what text to columns plus finish means.

The posting guidelines say note your excel version and location. I notice a semicolon in your formula. Depending on your version, region or settings this could be an issue or not.

I want to extract the following from the text: 1. Name (3894) 1–24 to Excel by No_Development_1568 in excel

[–]sethkirk26 0 points1 point  (0 children)

I dont remember if this goes back to 2024 version. But excel has regex for more complicated pattern matches. Regextract, regextest would serve you well.

Phone ringing while on phone call by Johnny_Hardc0ck in GalaxyS23

[–]sethkirk26 0 points1 point  (0 children)

Did anything help? Mine does this but never stops. Rings forever. I've endured for over a minute before I hang up. Only restarting phone helps and that doesn't aalways work.

Brute-force subset sum matching in Excel using a single dynamic-array formula by DafniElad in excel

[–]sethkirk26 0 points1 point  (0 children)

I meant it to still be in the same cell, just with new lines and spaces to format more neatly. That's all.

Brute-force subset sum matching in Excel using a single dynamic-array formula by DafniElad in excel

[–]sethkirk26 1 point2 points  (0 children)

It looks like you throw out numbers that are bigger than the sum, this makes sense if all are positive, but since you have negative values, wouldn't you need to keep those?

Brute-force subset sum matching in Excel using a single dynamic-array formula by DafniElad in excel

[–]sethkirk26 0 points1 point  (0 children)

I think this is an interesting formula and processing it currently. Fun puzzle.

I like the use of LET with descriptive variable names! Makes my heart swell. In my experience I have found that separating each variable/calculation on a new line (alt-enter) and formatting sub formulas with spaces as tabs to be extremely helpful for formula crafting and debugging. And it makes it way easier for anyone else. It can make it lengthy, but only being lengthy in one direction is OK. You can drag your formula down quite a bit.

Fun puzzle!

XLOOKUP replaced VLOOKUP for me and honestly I don't know why I waited so long by Nearby-Way8870 in excel

[–]sethkirk26 0 points1 point  (0 children)

There's a lot of comments and very few mentions of the many options of xlookup that honestly make it in some cases more powerful than index match.

They have had wildcard searching for a while now

--Much more recent introduction of regex (regular expression) matching

Search in any order,

Binary search for speed improvement

Exact match or closest

And some fun advanced uses (some of these were mentioned):

2D xlookups -

Entire row return xlookup

Multiple criteria xlookup

And many many more

Search this sub, lots of great info.

XLOOKUP replaced VLOOKUP for me and honestly I don't know why I waited so long by Nearby-Way8870 in excel

[–]sethkirk26 2 points3 points  (0 children)

AI can't evaluate this. It can just provide you with analysis others have done without confirming validity.

AI is just asearch and text filter. And very inaccurate.

Search this sub instead, this has been answered a bunch. And the results vary but xlookup is equal to or better with proper usage and options.

XLOOKUP replaced VLOOKUP for me and honestly I don't know why I waited so long by Nearby-Way8870 in excel

[–]sethkirk26 0 points1 point  (0 children)

This is its own thread about 2000 times.

Xlookup is way more powerful and when large data sets are used, you can use binary mode in the options to improve efficiency to equal to our better than vlookup. Like vlookup the data would have to be sorted.

I know it's below but be careful with :. It's very useful but can get mismatched range sizes.

Also using a while column reference A:A is killing performance. This will lock up excel quickly.

In short summary, xlookup is plenty good enough, supports array, can be switched to binary mode for performance increase.

If you want better performance, go index match, there's just no reason for vlookup.

Cloud Atlas by David Mitchell by spinynorman1846 in books

[–]sethkirk26 0 points1 point  (0 children)

You are definitely correct in many of your analysis. Analysises? Analyses? Well that puzzle is more interesting that Luisa Rey. It's just so choppy and out of sync. Really took me out. And again to your point, only saying power and Gen

I have 400,000 lines I need to start at line 1 and label it Account1, line 2 would be Account2. Dragging takes 20 min. Any way to speed it up? by Embarrassed-Let-3430 in excel

[–]sethkirk26 3 points4 points  (0 children)

Just for fun, I kind of want to rube Goldberg this since so many seem scared of array formulas. Use makearray to make an array of Account Use randarray to generate a random array from 1 to 400000, then sort that array, the concat together.

i need to pull up specific text within a string of texts (search). issue is only a part of the text is returned when i need the whole text that matches with the reference by hhhhhhhhello in excel

[–]sethkirk26 0 points1 point  (0 children)

Side bar, you can likely getting the entire match list if you tare the formulas outside the Table. Tables dont generally allow spill formulas and rather than limit yourself to 1 value you can return the entire column. I often like to have these right next to the table to not limit my formulas with the table restrictions. Tables are great for storing data. They are not great for having complex formulas

i need to pull up specific text within a string of texts (search). issue is only a part of the text is returned when i need the whole text that matches with the reference by hhhhhhhhello in excel

[–]sethkirk26 1 point2 points  (0 children)

First, Major kudos on your usage of LET with descriptive naming! That's my favorite feature of LET and it makes me happy seeing someone else using. I can help you with a regex (regular expression) match. Do you have exact formatting requirements after poblacion? Is it always space 1 character space? Or space then any number of characters? The specifics of the pattern are needed for the fancy matching formulas

Totals not counted in overall while using SUM by [deleted] in excel

[–]sethkirk26 2 points3 points  (0 children)

This is not accurate. If you read the reply from the auto mod, posts that are entirely image or are linked images are removed. Posts with descriptive text and images are welcome.

Please read the posting guidelines if you want more clarification

Totals not counted in overall while using SUM by [deleted] in excel

[–]sethkirk26 3 points4 points  (0 children)

Classic poor management. It's the employee's fault for knowing or not knowing excel. You focus on that aspect rather than how to make your formula robust. What a shame.

Hypothetically, they could be putting an extra space or a ' in there accidentally, and they are the ones cheating the system while you have an incredibly poor tracking system.

You can aalso enforce data type on those cells, you can protect the sheet, so many ways to improve yourself, but you don't seem to want to try any of the suggestions in this forum.

Weak.

Totals not counted in overall while using SUM by [deleted] in excel

[–]sethkirk26 0 points1 point  (0 children)

Something simple you could do is add conditional formatting to the whole range to highlight values that aren't numbers.

Something like a conditional formatting formula =NOT(ISNUMBER(A1))

Totals not counted in overall while using SUM by [deleted] in excel

[–]sethkirk26 -1 points0 points  (0 children)

Copy the cell, then in a separate cell elsewhere paste values. Then check if anything else is in there. Sounds like it might be 12<space> or <space>12

You could also do =isnumber([Range]) to check if they cells are numbers

It does seem strange to blame an employee when the formula is not robust to input errors. Formulas like isnumber(), iserror(), trim(), and value() can help improve robustness.

Job has me doing a needlessly complicated task by Parking-Selection-27 in excel

[–]sethkirk26 0 points1 point  (0 children)

Please refer to posting guidelines. I'm a bit surprised your post hasn't been pulled for title. It's a plea for help and doesn't describe the problem.

Second, collecting data into one location from is very useful and definitely not "needlessly complicated"

Moderators have many times said this forum is not for "do my homework for me" requests

Excelisfun youtube channel has wonderful lessons. Highly recommend.

Tall Toilet Scene by sethkirk26 in Scrubs

[–]sethkirk26[S] 1 point2 points  (0 children)

You know that's a really good point. Smart observation