I guess this warrants linking to https://shinesolutions.com/2018/01/08/falsehoods-programmers....
New Text and Array Functions for Excel
31–40 of 55 posts
Re: New Text and Array Functions for Excel
#32The functionality I want is a count-by-format function. I had to write my own in VBA and of course that means every time I open that sheet I have to approve its use of macros (and it also doesn’t always catch format changes that impact the calculation)
Encoding data in cell formatting is questionable practice.
Re: New Text and Array Functions for Excel
#33I'm surprised it's 2022 and they haven't embraced a multiline equation editor.
Not sure when it became a feature, but since at least 5 years ago you can click and drag the equation edit bar down to reveal multiple lines for editing. Pair this with Alt+Enter (line break) and adding 4 spaces at the start and you can nest functions in a familiar, albeit manual, way.
Re: New Text and Array Functions for Excel
#34Excel makes me feel like such a novice. I often just write a python script instead out of frustration. I don't think little of people that write complex formulas and macros with it. I am still waiting for "python in excel".
That would be awesome. With Sheets, I often jump into AppScript to write a quick javascript function to do what I want instead of having to deal with weird syntax. I wish I could do the same in Python.
Re: New Text and Array Functions for Excel
#35Earlier quoted context omitted.
seriously though, I think a copilot-like ML to improve flash fill is a genuinely amazing idea which could save insane hours, especially with people less familiar with complex formulas/coding
Someone just created that! https://excelformulabot.com/ Apparently Microsoft is creating a plugin. (Not affiliated)
Full Name | Nickname
Smith, John | Johnny
Ayers, Danielle | Dani
McDougle, Jack | Jack
Jason, Charles |
James, Trent |
Myers, Jessica |
David, Katherine |
And if you select the first 4 entries on the right and drag down, it will fill in the last 4.This is known as flash fill and already implemented: https://support.microsoft.com/en-us/office/using-flash-fill-.... Except AFAIK it still uses hard-coded pattern recognition. This is exactly the type of thing ML is good for!
Re: New Text and Array Functions for Excel
#36Earlier quoted context omitted.
That would be awesome. With Sheets, I often jump into AppScript to write a quick javascript function to do what I want instead of having to deal with weird syntax. I wish I could do the same in Python.
Doesn't the libre office equivalent do python?
function REVERSE_STRING(input) {
return input.split("").reverse().join("");
}
and then call that inside a cell formula.Re: New Text and Array Functions for Excel
#37Re: New Text and Array Functions for Excel
#38Excel makes me feel like such a novice. I often just write a python script instead out of frustration. I don't think little of people that write complex formulas and macros with it. I am still waiting for "python in excel".
That would be awesome. With Sheets, I often jump into AppScript to write a quick javascript function to do what I want instead of having to deal with weird syntax. I wish I could do the same in Python.
Re: New Text and Array Functions for Excel
#39Next challenge: make the find/replace dialog better than the confusing tabbed mess it is today. And make it non-modal for simple search/replace.
Next day… CTRL+F… text not found … what do you mean, I’m looking right at an example of this string…
Re: New Text and Array Functions for Excel
#40It’s 2022 and how come they don’t have GPT4 and some stable diffusion built in?
seriously though, I think a copilot-like ML to improve flash fill is a genuinely amazing idea which could save insane hours, especially with people less familiar with complex formulas/coding
I had an idea Excel had something as well but maybe not?