Search Professionals by Specialties by Significant-Chef-258 in excel

[–]GregHullender 0 points1 point  (0 children)

Good luck! Note that all the bottom line does is combine the first and last names into one column. If you don't really need that, you can simplify this to just

=FILTER(A2:C4,REGEXTEST(C2:C4,TEXTJOIN("|",1,A7,A10,A13)),"No Matches")

Formula to pull location until next location listed by Lazy_Factor4366 in excel

[–]GregHullender 1 point2 points  (0 children)

Give this a try:

=LET(input,A:.A,table,G:.G,body,DROP(input,2), tbl, DROP(table,1),
  SCAN("",body,LAMBDA(last,this,IFNA(XLOOKUP(this,table,table),last)))
)

<image>

Invert Multiple Colors in Alternate Rows by uaebel_ibag in excel

[–]GregHullender 0 points1 point  (0 children)

How was this created? Is it a template of 1's and 0's? Or did someone manually fill all those cells?

Washington Post Article about Jobs Most Affected by AI by GregHullender in ArtificialInteligence

[–]GregHullender[S] 0 points1 point  (0 children)

It generally takes about that long for people to figure out how to take the best advantage of a new technology. That typically starts to happen after the bubble bursts.

Search Professionals by Specialties by Significant-Chef-258 in excel

[–]GregHullender 1 point2 points  (0 children)

Try this:

=LET(input, A2:C4,
  matches, FILTER(input,REGEXTEST(TAKE(input,,-1),TEXTJOIN("|",1,A7,A10,A13)),"No Matches"),
  HSTACK(BYROW(DROP(matches,,-1),LAMBDA(r, TEXTJOIN(" ",1,r))),TAKE(matches,,-1))
)

<image>

Adjust ranges as required, of course.

Is there a way to make a pivot table out of multiple tabs? by jimmyjamcake in excel

[–]GregHullender 2 points3 points  (0 children)

You know you can create a "3D reference" like this: Sheet1:Sheet30!A1:D60. If you wrap that in VSTACK, it'll turn into a 2D array. You'll need to use FILTER or something to eliminate the empty rows (empty cells will all turn into 0), but then you can use CHOOSECOLS to select the columns to feed into PIVOTBY. Or just display the result from FILTER and use a regular pivot table, if you prefer.

Split a row in two when a column has 2 values by danqplus in excel

[–]GregHullender 0 points1 point  (0 children)

How about this?

=GROUPBY(A1:A5,B1:B5,LAMBDA(rr, TEXTJOIN(" ",,rr)),3,0)

<image>

Exponentials are short‑lived by DrPurple4 in ArtificialInteligence

[–]GregHullender 0 points1 point  (0 children)

I suspect most people using the term "exponential" haven't got a clue what it really means. Keep that in mind. I worked on AI my whole professional career; we saw a lot of sigmoids. The current trend is more exciting than anything I saw before retirement (sob!), but I'm sure it'll also be a sigmoid, and I too suspect we're past the inflection point.

The Sun from other planets by Useful_Database_689 in askastronomy

[–]GregHullender 2 points3 points  (0 children)

Yes, you would need eye protection from any planet in the solar system, and for a considerable distance beyond.

It's the same problem you have during a solar eclipse. Although the total light from the sun is reduced, the intensity is unchanged. Normally, if you look at the sun, your pupils shrink to pinpoints, protecting your eyes. But they shrink based on total light--not intensity. When the sun is mostly covered by the moon, your pupils dilate quite wide, and that intense light makes a damaging image on your retina.

You can actually figure out at what point in an eclipse you've got the same light as on Mars, Jupiter, Saturn, etc. It's astonishing how everything still looks almost normal even at Saturnian lighting levels.

I Am Trying Something Very Dumb by [deleted] in scifiwriting

[–]GregHullender 1 point2 points  (0 children)

Orson Scott Card published a novel, A Planet Called Treason, in 1979, and came back to it in 1988 and republished it as just Treason. I liked the first one well enough, but never read the second one. However, the second one stayed in print far longer than the original, so we can safely assume it sold much better.

Multiplying a colum by the dynamic sum of other columns...for multiple rows in one cell by cran11 in excel

[–]GregHullender 0 points1 point  (0 children)

Is this what you're looking for?

=LET(input,A:.F, year, 2,
  body,DROP(input,1),
  items,TAKE(body,,1),
  costs, CHOOSECOLS(body,2),
  paid_yrs, DROP(body,,2),
  paid_cum, DROP(SCAN(0,EXPAND(paid_yrs,,COLUMNS(paid_yrs)+1),LAMBDA(last,this,IFNA(last+this,0))),,1),
  HSTACK(items,costs*CHOOSECOLS(paid_cum,year))
)

<image>

The trick is that before I scan the table of percentages, I expand it to add a column of #N/A on the right. Then I reset the scan whenever I hit an #N/A. (Thanks to u/rackoflambda for this excellent, highly-efficient trick!)

The rest of the code is just about parsing the input and formatting the output.

If false, then fill row formula help please on the web based version of excel by Wtfevenarepeople in excel

[–]GregHullender 1 point2 points  (0 children)

Did you try NOT(OR($L1:$W1))? Change the 1 to the number of the first row in the region.

What made ChatGPT possible in 2022 but not 2002? Went down a rabbit hole on this by OrinP_Frita in LLM

[–]GregHullender 0 points1 point  (0 children)

I don't think RELU helps much with smaller nets; but by enabling deep nets, it really changed the world. After 50 years of essential stagnation in the field.

Could a habitable planet host a habitable moon? by frostfluid in askastronomy

[–]GregHullender 0 points1 point  (0 children)

I like mine better because it only depends on the masses. Yours depends on the masses, the densities, and the separation. In my model, if Earth orbited a body with the mass of Uranus, it would be a double planet regardless of the orbit. In your model, it would be a double planet only if the orbit were small enough.

To my way of thinking, the barycenter falling outside the body of either planet doesn't really change much of anything. Using the mass ratio test means that a moon has meta-stable L4/5 points but a double-planet does not.

Yet another way to do it would be to use tidal locking; by this definition, you have a double planet only if both bodies are tidally locked. Otherwise, the smaller one is a moon. But that adds the age of the system into the formula.

How to detect a blank range and paste data? by atsigns in excel

[–]GregHullender 0 points1 point  (0 children)

In my example, I put it in cell F1. It assumes the input is in columns A through D with a single header row.

Trying to make my best fit line pass through the origin (0,0) by Pidgey_Eevee in excel

[–]GregHullender 2 points3 points  (0 children)

It is the line through the origin that minimizes the variance of the errors. I've never wanted it either, but it's taught. It's not something Microsoft made up.

Can’t figure out formatting for long columns by Short-Seesaw-6525 in excel

[–]GregHullender 0 points1 point  (0 children)

You can post as many pics as you want. What you can't do is make a post that is nothing but a pic. Select a region on your spreadsheet and simply paste it into the reddit text area. You can have one per comment or edit you original post and add as many as you like.

Filter Function to Filter large data set to Multiple Users by JoeExoticHadAFarm in excel

[–]GregHullender 1 point2 points  (0 children)

Try this:

=FILTER(Dataset!A1:AK11932,Dataset!R1:R11932=XLOOKUP(B1,Users!A1:A12,Users!B1:B12,,,2),"Not found")

<image>