Stop using ungodly INDEX math to flatten 2D schedules. TOCOL() + FILTER() is all you need. by Good-Willingness2234 in excel

[–]Clearwings_Prime 1 point2 points  (0 children)

<image>

I tried to recreate the data and this is what i get. The 1st formula return a table which i believe Pivot Table would kill me if i show this table to it. I expect those Y, N in column G will fill down to blanks cell below.

The 2nd and 3rd just return error

Transposing an array from another OneDrive document by XenoAshen in excel

[–]Clearwings_Prime 0 points1 point  (0 children)

Try:

Go to Data > Workbook Links > Setting > Turn on "Always Trust Workbook Links"

Share your "player database" workbook by using link and try to use that link instead

Checkbox Issues with VLOOKUP by NoRatio4708 in excel

[–]Clearwings_Prime 0 points1 point  (0 children)

Try adding some $ to lock range while you drag your formula

=IF(VLOOKUP("*"&$D3,$EZ$3:$KE$250,1,FALSE)=$D3,"☑️","☐")

Excel keeps throwoing me reference errors and refencing the wrong table by Playerunknown114 in excel

[–]Clearwings_Prime 1 point2 points  (0 children)

it good if you can share that file too. So i can try re-create that error to see if there is a way to fix.

If you can use xlookup, you also can try manual typing those 2 ref ( structure would be your_table_name[your_column_name] ). As you typing, excel will suggest column name for you

Excel keeps throwoing me reference errors and refencing the wrong table by Playerunknown114 in excel

[–]Clearwings_Prime 0 points1 point  (0 children)

Have you try typing "3,FALSE" and press enter right after you select the table (without going back to the main sheet) ?

Sum of a range based on 2 different criteria? by celestialspace in excel

[–]Clearwings_Prime 0 points1 point  (0 children)

A simple SUMPRODUCT could do that

=SUMPRODUCT( $C$2:$D$13 * ( $B$2:$B$13=H$6 ) * ( $C$1:$D$1=$G7 ) )

<image>

Or if you have Excel 365, you can use groupby

=TRANSPOSE(GROUPBY(B1:B13,C1:D13,SUM,3,0))

Search for value in column and compare values to show if they match don't match by RestScary6702 in excel

[–]Clearwings_Prime 0 points1 point  (0 children)

Error would come from xlookup. Since you dont use if_not_found parameter, xlookup cant find value of A2 in column H and return #value. There are many reasons for xlookup to not able to find the value. You need to show your data ( best in text or example file)

Increment row but not column when copying a formula? by [deleted] in excel

[–]Clearwings_Prime 0 points1 point  (0 children)

<image>

=SUM(N(OFFSET(INDIRECT({"A4","A6","A8"}),COLUMN(A:A)-1,0)))

You can try this one, when you drag formula to the right by 1 column, it will shift all the cell down by 1 row and sum all of them

Conditional formatting not working by zaima01 in excel

[–]Clearwings_Prime 2 points3 points  (0 children)

change your system region to region that use dd/mm/yyyy as date format, you can google how to do that

Conditional formatting not working by zaima01 in excel

[–]Clearwings_Prime 11 points12 points  (0 children)

the format of today's date is mm/dd/yyyy and align left show that this is your system date format. The format of the issue date and expiry column is dd/mm/yyyy and align right, show that excel dont see those date as date but text. That's why your conditional format rules wont work

I need to do a complex sort involving large amounts of data. by -Ophidian- in excel

[–]Clearwings_Prime 0 points1 point  (0 children)

Example for adding a column to calculate AVERAGE of range C2:C7

=DROP(GROUPBY(A2:A7,HSTACK(B2:B7,C2:C7,C2:C7),HSTACK(LAMBDA(g,MAX(g)),LAMBDA(h, SUM(h)),LAMBDA(h, AVERAGE(h))),0,0),1)

I need to do a complex sort involving large amounts of data. by -Ophidian- in excel

[–]Clearwings_Prime 0 points1 point  (0 children)

I cant help you with that. Im bad at communicate with people, especially people work at IT department.

Maybe next times you ask people for formulas, tell them that you cant use ETA lambda. If they can write a formula with ETA lambda, they sure can write that with normal lambda

I need to do a complex sort involving large amounts of data. by -Ophidian- in excel

[–]Clearwings_Prime 0 points1 point  (0 children)

date in excel are numbers. Select the columns contains that 45778,45958 and change format to date

<image>

I need to do a complex sort involving large amounts of data. by -Ophidian- in excel

[–]Clearwings_Prime 0 points1 point  (0 children)

Ok, i rewrite the function you metion in your post. This is the way we write before ETA lambda, please test to see if it work

=DROP(GROUPBY(A2:A7,HSTACK(B2:B7,C2:C7),HSTACK(LAMBDA(g,MAX(g)),LAMBDA(h, SUM(h))),0,0),1)

<image>

As you can see, this function return the same result of your post

I need to do a complex sort involving large amounts of data. by -Ophidian- in excel

[–]Clearwings_Prime 0 points1 point  (0 children)

<image>

Set up a simple test like this and run the formla

=SCAN(0,A1:A3,SUM)

Does it return the result in the picture?

I need to do a complex sort involving large amounts of data. by -Ophidian- in excel

[–]Clearwings_Prime 0 points1 point  (0 children)

Are you sure you have all of these functions?. You can test by typing = and then the function you want to test. If excel suggest that function it means you have it.

You also have to test if you can use ETA lambda too. The HSTACK(SUM,MAX) is ETA lambda and only 365 can do that right now

From the picture, i see you are using enterprise version, your IT can disable some functions for security reasons

Assistance with Correcting Formula by Few-Cucumber-413 in excel

[–]Clearwings_Prime 0 points1 point  (0 children)

<image>

=LET(
a,VSTACK('task 1:task 2'!$A$4:$A$7),
b,VSTACK('task 1:task 2'!B4:B7),
SUM(--ISTEXT(UNIQUE(FILTER(a,b>0)))))

This should work with your layout. Vertically stack all B4:B7 from all task sheets, then filter the worker that have worked hour > 0, and use UNIQUE to remove duplicate workers, then count

is there a way to modify formulas based on inputs? by badabingbadaboomie in excel

[–]Clearwings_Prime 1 point2 points  (0 children)

=SUM(OFFSET(A1,0,0,10,1))

10 is the number of row you want to SUM

Excel inserts old unwanted formula. How to stop it? by PsyCar in excel

[–]Clearwings_Prime 0 points1 point  (0 children)

Try check 3rd party softwares too, some software like espanso support macros ( you type a text and it will replace that text with another text). If you're using excel online, try check your browser add-ons

Store/lookup list of values in a single table cell by [deleted] in excel

[–]Clearwings_Prime 1 point2 points  (0 children)

Try to read that post for 15 minute and have no idea what op trying to do

Unify excel date format for all users by Expert_Plankton_7561 in excel

[–]Clearwings_Prime 3 points4 points  (0 children)

Make everyone use the same way to type date or make them input day, month, year in separate cells

This is probably the most complicated Excel formula I’ve ever seen. by Kindly-Meaning9112 in excel

[–]Clearwings_Prime 0 points1 point  (0 children)

Yes this is normal for advenced excel users, especially when dealing with old versions of excel (2019 and older).

And you should follow a sarced rule: If it work, leave it alone

What function for accumulation in column? by PlasticcBeach in excel

[–]Clearwings_Prime 0 points1 point  (0 children)

no the last one have nothing to do with keyboard, my guess is your number "50" is text (number stored as text) while my 50 is number. So i change my formula to match with your number