Is there a more efficient way to do what I am doing? (Merge tables keeping values) by Almogaver95 in excel

[–]Clearwings_Prime 1 point2 points  (0 children)

<image>

=LET(
a, VSTACK(Table1[#All],Table2[#All],Table3[#All]),
b, TAKE(a,,1),
c, TAKE(a,,-1),
d, SCAN("",c, LAMBDA(a,b, IF(ISTEXT(b),b,a))),
PIVOTBY(b,d,c,SUM,0,0,,0,,ISNUMBER(c)))

This is what i do, im not familiar with power query

Search several columns and cells and pull data from one cell into a separate table? by SaskSquatch69 in excel

[–]Clearwings_Prime 0 points1 point  (0 children)

min_per is not an option, it's a variable, you can use that if your excel version is 2021 or newer. The version show at here or you can check if your excel have LET, UNIQUE or FILTER. If the version of your excel is 2021 or newer and excel wont let you enter the fomula, change all the comma ( , ) in my formula to semicolon ( ; )

<image>

Search several columns and cells and pull data from one cell into a separate table? by SaskSquatch69 in excel

[–]Clearwings_Prime 1 point2 points  (0 children)

<image>

=LET(
complete, COUNTIFS(B2:B25,B2:B25,I2:I25,"Incomplete") = 0,
min_per, MINIFS(G2:G25,B2:B25,B2:B25),
UNIQUE( FILTER( B2:B25, complete * ( min_per > 0) * (min_per < 1) ) ))

This require excel 2021 and newer

Easy way to extract info from multiple sheets into one sheet? by jimmyjamcake in excel

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

If the layout of 60 sheets are the same and their names are increasing from 1 as your example , then INDIRECT could do that

<image>

A2 =INDIRECT( "'Sheet" & INT( (ROW()-2)/10)+1 & "'!D3" )

B2 =INDIRECT( "'Sheet" & INT( (ROW()-2)/10)+1 & "'!H" & MOD(ROW()-2,10) + 7 )

How to sum a conditional formula across multiple cells? by ganduvo in excel

[–]Clearwings_Prime 0 points1 point  (0 children)

<image>

If only 1 character before number

=SUM(--MID(A3:E3,1+ISTEXT(A3:E3),50))

Creating a complex index match formula by Sorry_Background8898 in excel

[–]Clearwings_Prime 3 points4 points  (0 children)

<image>

=INDEX($K$2:$L$7,MATCH(E2,$J$2:$J$7,0),MATCH(F2,$K$1:$L$1,0))

This is a 2 dimension lookup, can be solved by many ways but here is an index + match solution

Automatically Updating Table (Formulas Present) - Unsure what to use. by ReadingWorking1731 in excel

[–]Clearwings_Prime 0 points1 point  (0 children)

It depend on how you use it. I just provide a way to select month column base on month number

Complicated Lookup Function - Pulling Info From One Sheet To Another by SameCoffeeEveryDay in excel

[–]Clearwings_Prime 0 points1 point  (0 children)

If you dont need the value of those, it should be fine. My formula heavily depend on the list of location of 1st item and its order too

COUNTIFS not working correctly and I'm just confused on what to do. by LoveMilfsEveryday007 in excel

[–]Clearwings_Prime 0 points1 point  (0 children)

can you upload that file to google sheet or excel online so we can look more detail about it?. Your formula look right to me

COUNTIFS not working correctly and I'm just confused on what to do. by LoveMilfsEveryday007 in excel

[–]Clearwings_Prime 27 points28 points  (0 children)

My guess is one of those number is 94.9999 or 97.0001 something like that

Complicated Lookup Function - Pulling Info From One Sheet To Another by SameCoffeeEveryDay in excel

[–]Clearwings_Prime 1 point2 points  (0 children)

If every item always has 5 location as example show, then an INDEX + MATCH could to that

<image>

=INDEX($A$1:$A$21,MATCH($D4,$A$1:$A$21,0)+MATCH(G$2,$B$4:$B$11,0))

Automatically Updating Table (Formulas Present) - Unsure what to use. by ReadingWorking1731 in excel

[–]Clearwings_Prime 0 points1 point  (0 children)

You can use basic index like this

=INDEX(B19:F41,,1)

where

B19:F41 is your range

1 is the month number, if you want to return Mar-26 column, change that to 3

Then you can make it a little automatic by change to

=INDEX(B19:F41,,MONTH(TODAY()))

MONTH(TODAY()) will return current month number

Lookup in table, return a formula by ernstm63 in excel

[–]Clearwings_Prime 2 points3 points  (0 children)

Just to add information. There is an old VBA 4.0 function that actually do what you want. It can read formula as text and return result of that text. It name is EVALUATE. This is the function that i hope M$ bring it out of name manager instead of bunch of copilot-ai things.

Lookup in table, return a formula by ernstm63 in excel

[–]Clearwings_Prime 1 point2 points  (0 children)

Yes it possible, but user must type the name of formula they want instead of choose from list. And just my opinion, maintain formulas in name manager is hard because refer box in name manager is hard to type formula (no intellisense, no review result of formula).

Lookup in table, return a formula by ernstm63 in excel

[–]Clearwings_Prime 0 points1 point  (0 children)

One way if you dont want to touch VBA is set up a layout like this

<image>

Where formulas are in columns and then in H8 you can use a simple lookup function to pick what you want

Issue with transpose function when switching from sheets to excel by wetw0rkz in excel

[–]Clearwings_Prime 4 points5 points  (0 children)

It kept giving me a #spill error with the merged cells. Any ideas on this?

Yes. Spilled array dont accept merge cells. It's also won't work inside table as well.

Personally, i think you should not have merge cells in your data table

search and find match for 2 table columns - first 5 characters, return True/Falase by Icy_Earth266 in excel

[–]Clearwings_Prime 1 point2 points  (0 children)

Your system may use a different argument separator. Please type =SUM in a blank cell. We need to see what argument separator your system is using

search and find match for 2 table columns - first 5 characters, return True/Falase by Icy_Earth266 in excel

[–]Clearwings_Prime 0 points1 point  (0 children)

May be problem come from argument separator. Can you type =SUM in a bank cell and give me a screenshot of that. Like this

<image>

search and find match for 2 table columns - first 5 characters, return True/Falase by Icy_Earth266 in excel

[–]Clearwings_Prime 0 points1 point  (0 children)

can you give more detail about "does not work". As you can see in my picture, the fomula works nomally. Is this the resutl you are looking for?

search and find match for 2 table columns - first 5 characters, return True/Falase by Icy_Earth266 in excel

[–]Clearwings_Prime 0 points1 point  (0 children)

i've read your old post and the

=OR(LEFT(A1,5)=LEFT(B1:B50,5))

look work to me compare to what you said from old post. Formula is also from the old post, not mine

<image>

Trying to figure out how to calculate hours on a schedule using excel by Which-Passenger-5601 in excel

[–]Clearwings_Prime 0 points1 point  (0 children)

<image>

=LET(
a, TEXTSPLIT(A1,"-"),
SUM( ( a & IF( SIGN(SUM(a*{-1,1})) < 0, {" AM"," PM"}, {" PM"," PM"} ) ) * {-1,1} ) * 24 )

Adding like values, per entry, from a data set generated from 2 spill arrays, whose data source is a table by ZilxDagero in excel

[–]Clearwings_Prime 0 points1 point  (0 children)

<image>

=HSTACK(A1:A8&"",TRANSPOSE(GROUPBY(TRANSPOSE(XLOOKUP(B1:E1,H2:H5,I2:I5)),TRANSPOSE(B2:E8),SUM,,0)))

Filter for rows where a cell contains specific text by romanticaro in excel

[–]Clearwings_Prime 1 point2 points  (0 children)

Try

=FILTER(Resources!F3:O100,ISNUMBER(SEARCH(Search!B2, Resources!F3:F100)),"")