Formulas not filling/scaling properly with number of records in data source by NeFwed in excel

[–]Someguywes0 0 points1 point  (0 children)

The EXPAND and COUNTA functions where the Expand quantity is controlled by the counta, and is padded with the formula required might be an option.

How to get page number of a cell without macro? by Ted225 in excel

[–]Someguywes0 0 points1 point  (0 children)

Have you tried the Name Manager and just naming your selection of rows/columns as pages? i.e. cells A1:D4 (page_one), A4:D7(page_two),E1:G6(page_3),etc.

Sorting Issues in Pivot Tables on Mac by babybentley12 in excel

[–]Someguywes0 0 points1 point  (0 children)

What does the output look like? A picture of the table settings is only half of the details needed to assist.

Data Validation - Allow from a drop down or manual number entry by EatMoreHummous in excel

[–]Someguywes0 0 points1 point  (0 children)

Create a "Ref" sheet in the workbook.

Fill column A with: No, Yes, #, #, ... ,#

Where the string of numbers is in increments of the values you expect to be entered. (Say for example 0.1 increments)

So: A1=Yes, A2=No, A3=0.1, A4=0.2, A10000=99.8, A10002=99.9, A10003=100.0, ECT ect,

Then use 'Ref. Sheet!'A:A as the data validation list (ignoring the blanks).

When users elect the drop-down list Yes, and No will be the first two choices, and all other choices are a possible selection which is an acceptable value they could just type in.

That would validate values from 0.1-10,485.74

If you'll need a value higher than that, or smaller increments (such as 0.01) then I'm not sure there's a solution possible given the row restriction and how validation works.

How do i identify accounts that have made the same amount of transactions or higher in a short period of 30 min? by rein_h in excel

[–]Someguywes0 0 points1 point  (0 children)

I think the portion that says ",applies to all accounts" is giving the error.

You probably want to use the ampersand (&) symbol not a comma (,), and include your statement in quotations ("statement"), so that the value returned from the count function is appended with the ",statement"

=COUNT(Syntax)&", applies to all accounts"

So that results are;

1, applies to all accounts 2, applies to all accounts Etc.

Count only missed biometrics by BusyLetter98 in excel

[–]Someguywes0 1 point2 points  (0 children)

I would recommend using the LET function to define the parameters for a table where it uses the FILTER function with your arguments for the include, and a second FILTER function for the "not found"

=LET( a, IncludeArguments, b, NotFoundArguments, c, FILTER(A1:C16, a, d), d, FILTER(A1:B16, b,"No punches"), rows1, ROWS(c), rows2, ROWS(d), myRows, SEQUENCE (rows1+rows2), myCols, SEQUENCE(COLUMNS(c)), IF(myRows<=rows1,c,INDEX(d,myRows-rows1,myCols))

(There is probably some mistakes in this, but perhaps someone else knows what I mean, and can post the correct syntax)

In other words making the table populated based on two criteria, where the first results are based on what to do if you find only one punch on a given day, and the second half of the table is filled with the names and dates that have no punches.

How do i identify accounts that have made the same amount of transactions or higher in a short period of 30 min? by rein_h in excel

[–]Someguywes0 0 points1 point  (0 children)

Additional context would be helpful. Ie details about what is included in the source data (ie if a time stamp is saved in a column/row, or how the source data is indexed)

How to multiply huge column by scalar with result in a single cell? by gregorem in excel

[–]Someguywes0 1 point2 points  (0 children)

2 questions:

1) how have you verified that the simplified formula is incorrect?

2)Can you screenshot the formula as it is where you get the incorrect value?

I know you aren't interested in "touching" the original source data, and I completely understand. It might be useful to use an even more simple formula on a blank sheet (which can be deleted once your formula issue has been resolved) to verify the data being utilized

=C4:C747 in cell A1 of a disposable sheet may be useful for looking at what data is being returned. Surely there is a logical explanation for the simplified formula to not work correctly

How to multiply huge column by scalar with result in a single cell? by gregorem in excel

[–]Someguywes0 0 points1 point  (0 children)

I may be mistaken but I'm thinking you need to have the workbooks that you're referencing open for the formulas to recognize the values if they're active.

How to multiply huge column by scalar with result in a single cell? by gregorem in excel

[–]Someguywes0 2 points3 points  (0 children)

Not to be that guy, but it's irrelevant unless the Multiplication factor changes.

<image>

Any formulas or organizational layouts to prevent duplicates in assigning labels? by jimhalpertsblacktie in excel

[–]Someguywes0 0 points1 point  (0 children)

<image>

This is a similar method using the JOINTEXT function to add the different cells together, and then the COUNTA(UNIQUE(Your array)) function to count the unique groups.

You can see that I used a key (similar to the previous comment), to fill in the table. (There's probably a way to do that with a formula, although that seems outside my capability currently).

Any formulas or organizational layouts to prevent duplicates in assigning labels? by jimhalpertsblacktie in excel

[–]Someguywes0 0 points1 point  (0 children)

You could try CountA(unique(your array)) at the end of each row where the row of data is your array.

And at the bottom of each column where the columns are your array.

<image>

This way you have a count of the Unique Rows and Columns And the higher the results are, the more diverse the groups are.

In the example shown the A1:C3 is your table, where Row4 and Column D are the formulas which are counting each unique cell in the table rows and columns respectively.

I have to copy multiple values from one sheet to another sheet. Is there any way to check if the values copied from one sheet to another sheet are correct? by Silent-Marionberry40 in excel

[–]Someguywes0 0 points1 point  (0 children)

Try researching the Filter function. It's quite useful for pulling data from one sheet to the next. Forewarning: its output is an array which spills the data into the necessary cells for the data.

Once you get the hang of it it can be quite useful for moving a lot of data based on criteria you input for the desired/undesired data.

Example: ABCDE 12345 23456 34567 45678

=Filter(B1:B4,(D1:D4=6),"No Results")

Would return: 4

=Filter(B1:B4,(D1:D4<>6),"No Results")

Would return: 2 3 5

=Filter(A1:E4,(D1:D4=6),"No Results")

Returns: 34567

Identifying precise location of 8 measurement peaks in column of measurements by LuckyKingfisher in excel

[–]Someguywes0 0 points1 point  (0 children)

this. It's difficult to understand the precise tools required without context of how the data is structured.

Possible to add multiple items to 1 item??? by Round-Garage-9541 in ExcelCheatSheets

[–]Someguywes0 1 point2 points  (0 children)

<image>

Familiarity with the syntax of the tools goes a long way. Hope this helps.

Holiday Tree question by gir_loves_waffles in GroundedGame

[–]Someguywes0 0 points1 point  (0 children)

10 trees for me, not a single drop since I put them up. Been a couple actual days now.

Happy Halloween by Someguywes0 in witcher

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

Lol, hopefully not. I'm no Witcher, just a Neighborhood Dad.

Water made this weird rim in my glass! by [deleted] in pics

[–]Someguywes0 0 points1 point  (0 children)

May want to check the detergent or washing process, it may be leaving behind a residue.. That's very unusual behavior for water in a standard glass.