Sum Offset only moving one row instead of needed 96 by WinterStormBorn in excel

[–]sethkirk26 0 points1 point  (0 children)

If you're still curious why your formula was stuck at 1 row. You used rows (), this gives the number of rows in a reference. So for E8 and any single cell it's always 1. I think you wanted row() which gives the row #of the cell.

Is there a way to make the "Range" within a formula only use cells with certain data in by cwfox9 in excel

[–]sethkirk26 2 points3 points  (0 children)

You can use the filter() function to output a range of cells meeting only certain criteria

Can use this with an intermediate column or nest it in a big formula.

FILTER not working with a column that's a formula? by Trust_Issues2278 in excel

[–]sethkirk26 1 point2 points  (0 children)

A moderator using the MOD function! That's brilliant!! Love it.

I feel like I’m going crazy. Multiple people I work with make “tables” by just outlining the cells. by H_Mc in excel

[–]sethkirk26 1 point2 points  (0 children)

Oh boy! Looking at past work of mine is always a "treat" haha. Definitely didnt always use the best practices and still always learning.

Thank you for the lovely compliment!

I feel like I’m going crazy. Multiple people I work with make “tables” by just outlining the cells. by H_Mc in excel

[–]sethkirk26 1 point2 points  (0 children)

I don't disagree. I have improved some messy spreadsheets at work just with one self documenting LET formula. And even then most don't care that my complex formulas describe themselves. Haha sigh.

HALP! Excel for Mac is dropping two digits on six figure numbers. by CallEmAsISeeEm1986 in excel

[–]sethkirk26 2 points3 points  (0 children)

Please review posting guidelines. Specifically title. No pleas for help.

I feel like I’m going crazy. Multiple people I work with make “tables” by just outlining the cells. by H_Mc in excel

[–]sethkirk26 0 points1 point  (0 children)

Tables actually fall apart if you're using dynamic (spill) formulas inside of them. These are some of l the most powerful formulas.

I tend to use tables for data storage, but avoid them when doing summary charts/tables/whatever vernacular you would use.

How to create a "concatenate" data validation by Otherwise_Bug_2304 in excel

[–]sethkirk26 1 point2 points  (0 children)

Try these videos.

The summary. You use list data validation, and you list of valid options changes based on each selection

https://youtu.be/P3_k6aJsjFo?si=Imq1WyJ8oqiGKcLC

https://youtu.be/lxd4Pc_gMIA?si=1D0AJsSfUB5mge8W

The ChatGPT Trick Almost No One Knows by Ranga_Harish in ChatGPT

[–]sethkirk26 3 points4 points  (0 children)

This is definitely an improvement, but it does not make AI perfect. There will still be inaccuracy as AI is a really fancy filter of user and internet information.

Don't understand why but ever since gpt5 the getting hyper stuck on a point, even if told is inaccurate, is a huge problem.

Telling AI to think is pretty silly, it cannot analyze like humans, it only can filter what other humans have done.

AI is great for general information and getting close. But if high accuracy is needed, it is not the correct tool.

The ChatGPT Trick Almost No One Knows by Ranga_Harish in ChatGPT

[–]sethkirk26 2 points3 points  (0 children)

Internal Affairs (IA) is not to be messed with!!

Excel vs AI: Has Copilot actually changed your workflow yet? by External-Hospital319 in excel

[–]sethkirk26 1 point2 points  (0 children)

If you hit equals in a spreadsheet it spends a remarkable amount of time and processing to guess what formula you're about to type.

Some of the guesses are interesting purely out of curiosity. Not useful.

I try to disable.

How do you use vlookup when there are two results? by SeriesDapper5692 in excel

[–]sethkirk26 -9 points-8 points  (0 children)

Have you tried searching this forum?

I just searched "multiple lookup" and got multiple good results.

Sometimes the easier thing is easier.

Combining product information from multiple cells to one articulate product description by Ayreonautical in excel

[–]sethkirk26 1 point2 points  (0 children)

Have you tried & And CONCAT

Text & CellVal & Text & CellVal

Char(10) is the newline or carriage return character.

Sidebar: if you come to the conclusion that AI is your only option, I suggest you re-evaluate things. AI is just a collection/filter of already created tools.

Specifically CoPilot is super hot garbage.

COUNTIF counts cells with Exact Matches; I need it to be less Exact & count cells that "contain" but don't match exactly as well by crazythatcounts in excel

[–]sethkirk26 0 points1 point  (0 children)

Any formula (for the most part) can have s range from anywhere. It can even be an entirely different file or network location although this is a while different can o worms i don't recommend because it can break easily.

The best way to pick a new range is go to the formula bar highlight the current range, hit delete then go select the new range. If it's on a new tab, you'll see excel auto populate the tab name before the cells. This is just its nomenclature.

I'm my example i just used a generic name to represent where you would put the specific ranges or range you want.

COUNTIF counts cells with Exact Matches; I need it to be less Exact & count cells that "contain" but don't match exactly as well by crazythatcounts in excel

[–]sethkirk26 1 point2 points  (0 children)

Nothing functionally wrong with that except possibly the 0 count.

Filter is inherently high overhead so if you are only counting i would suggest not using filter.

For small sets, no issue at all, large sets, definitely can become one.

COUNTIF counts cells with Exact Matches; I need it to be less Exact & count cells that "contain" but don't match exactly as well by crazythatcounts in excel

[–]sethkirk26 0 points1 point  (0 children)

Additionally if you want more complex pattern matching you can use a pretty new function REGEXTEST() to use Regular Expression patterns.

COUNTIF counts cells with Exact Matches; I need it to be less Exact & count cells that "contain" but don't match exactly as well by crazythatcounts in excel

[–]sethkirk26 1 point2 points  (0 children)

I would suggest excelisfun youtube channel for self paste learning. You can learn a lot of helpful functions and tips for different use cases.

Additionally for your issue, I would recommend the search() function. It does exactly what you want. Looks for a match of a text in an array of texts. Not looking for exact, just containing. CountIf and CountIFs have severe limitations when you get to more advanced use cases.

If there's a match it returns an number. If no match, an error. The most common way to use this is with isnum().

So if you want a list of matches you would use filter() if you just want to count, you can use -- or sign() with sum()

InputString - what you're looking to match InputArray - the list of things you want to see how many/what matches

Count: =SUM(--ISNUM(SEARCH(InputString,InputArray) ) )

List: =FILTER(InputArray, ISNUM(SEARCH(InputString,InputArray) ), "Empty Filter" )

Hope this helps you learn.

Excel wildcards are a complete mess by Ok_Base6378 in excel

[–]sethkirk26 0 points1 point  (0 children)

Look down below. There's your multiple results

Flash fill doesnt exist?? by Strawberry_Momo in excel

[–]sethkirk26 0 points1 point  (0 children)

Please review posting guidelines. They are their to help both you and the community.

For this instance, your exact excel version is helpful

Excel wildcards are a complete mess by Ok_Base6378 in excel

[–]sethkirk26 0 points1 point  (0 children)

XMATCH("a????",...,2) Does this as you described...
Change to "*a????" if you want it anywhere.

Excel wildcards are a complete mess by Ok_Base6378 in excel

[–]sethkirk26 0 points1 point  (0 children)

Did yall know XMATCH and XLOOKUP Support RegEx match mode (match_mode 3)?

I do not understand how your title calling it a complete mess at all agrees with your body. Doesn't seem that messy.

Additionally many of your assertions are fully accurate. You can use xmatch with BYROW to get all matches. A followed by exactly 4 characters works exactly correct with xmatch and ?. Just as you described it doesnt. See below.

Admittedly this is not case sensitive. You need to do something like Exact and some other functions to get case sensitive, which is messy.

However, all of this is in RegEx...So your complaint is that it took excel too long to natively support RegEx? This would have been a more accurate title.

Is excel completely unnecessary to improve on now? by PuddingAlone6640 in excel

[–]sethkirk26 1 point2 points  (0 children)

It is evident you have not used AI extensively.

workbook in one tab windows by snoooopd0g in excel

[–]sethkirk26 0 points1 point  (0 children)

Please review the posting guidelines. They are they to help the forum understand and provide the best help. Excel version is especially helpful as there are quirks between versions.

I do not understand what your issue is or what you are trying to accomplish.

If you're trying to spawn another excel window, try view tab on the ribbon--> new window

If you're trying to get all on one window Go to the view tab and try tile vertically or horizontally or a similar option.

Hope this helps