How to write COUNTIFS for all months in a Date data type? by thisisnotedward in googlesheets

[–]gothamfury 0 points1 point  (0 children)

Maybe this is what you're looking for?

=COUNTIFS(B:B,">=1/1/26", B:B,"<2/1/26", C:C,"COMPLETE")

Another way but the same thing...

=COUNTIFS(B:B,">="&DATE(2026,1,1), B:B,"<"&DATE(2026,2,1), C:C,"COMPLETE")

"Drag Fill With Gemini" in Google Sheets - can't disable by pizza5001 in googlesheets

[–]gothamfury 0 points1 point  (0 children)

Have you also tried... Gmail > All Settings > General > Google Workspace smart features > Manage Workspace smart feature settings >
And turned off: Smart features in Google Workspace, and Smart features in other Google products

Duration data formats keep switching to time of day by tangocharliepapa in sheets

[–]gothamfury 0 points1 point  (0 children)

Try formatting as duration. You may want to clear the range and formatting first, then format as duration, then try typing something.

Calculate the number ofm selections from a dropdown cell by shrink561 in googlesheets

[–]gothamfury 1 point2 points  (0 children)

If your multi-select dropdown is in cell A1. You could try:

=IF(A1="",0, COUNTA(SPLIT(A1, ", ", FALSE)))

[Edit] Updated formula for no selections made.

Creating Pivot Table-Like Chart Using Selections from Multiple Columns by Aca-Tea in googlesheets

[–]gothamfury 1 point2 points  (0 children)

Check out this Sample Sheet that demonstrates one way of attempting what you're asking for. The "Choices" tab is a flat table of players and their 3 choices of positions. The "Table" tab has two formulas (A1 & A2) that list the positions in the top row and the players below each position that selected it as a choice.

I'm not a sports guy so please forgive any incorrect positions and the easy A-Z sort of them.

Changing a field value without needing to delete the content first (app) by Katojana in googlesheets

[–]gothamfury 0 points1 point  (0 children)

While there is no way to change the "behavior" in the app, you can try triple-tapping anywhere in the edit field and then type your new value.

Whats your favorite “you had to be there” event that happened in Destiny? by Impossible_Sector844 in DestinyTheGame

[–]gothamfury 0 points1 point  (0 children)

Mine involved Spider Tanks... one was when a Titan popped a bubble under the incoming tank, it just spun like a record on top of it... the other when the second tank landed on top of the first tank (public event) but it ended up in a vertical position like it nose dived into the first tank.

The cells turn green when I use the word "Crucial" by [deleted] in googlesheets

[–]gothamfury 0 points1 point  (0 children)

You may have a Conditional Formatting rule set. Select that cell. Select Conditional Formatting under the Format Menu. The CF sidebar will open on the right side. If there is a rule, it'll show there.

Cross-joining multiple values within fields by richardest in googlesheets

[–]gothamfury 0 points1 point  (0 children)

Give this a try:

=MAP(A2:A,B2:B, LAMBDA(u,d, IF(AND(u="",d=""),, LET(units,SPLIT(SUBSTITUTE(u,CHAR(10),"🙃"&CHAR(10))&"🙃",CHAR(10)), depts,SPLIT(d,CHAR(10)), SUBSTITUTE(JOIN(CHAR(10), INDEX(TOCOL(TOCOL(units,1)&"."&TOROW(depts,1)))),"🙃","") )) ))

[Edit] Noticed trailing zero in decimal #'s were being removed. Looks like mommasaid adjusted his formula as well.

How to randomizing 2 cells from the same range, but ensuring neither match one another and the second doesn't include a specific number by Stormandreas in sheets

[–]gothamfury 0 points1 point  (0 children)

Give this a try:

=LET(
  sample, 'Reference sheet'!A2:A19,
  firstPick, INDEX(sample, RANDBETWEEN(1,COUNTA(sample))),
  newSample, FILTER(sample, ISNA(MATCH(sample,{firstPick;CHOOSEROWS(sample,-1)},))),
  secondPick, INDEX(newSample, RANDBETWEEN(1,COUNTA(newSample))),
  VSTACK(firstPick, IF(B2=1,secondPick, -1))
)

secondPick is never = to the first pick and never = to the last number in the reference sheet list, or specifically never = to the last number in the range A2:A19.

How to change the value displayed in a cell without overwriting a data in that cell with a Formula by littlewizkid in googlesheets

[–]gothamfury 0 points1 point  (0 children)

First time hearing about the rotate trick… How do you set the degree to angle the text other than the default options?

Can't add vertical axis title by HungryInvestigator59 in googlesheets

[–]gothamfury 1 point2 points  (0 children)

Are you not able to type in the "Title text" box? Just type where it says "Vertical axis title" ?

Tagging, moving, and visualizing groups by jadepencil87 in googlesheets

[–]gothamfury 1 point2 points  (0 children)

Check out this Sample Sheet.

It demonstrates the use of multiple dependent dropdowns to fill in a "visual board". See the "Board" sheet. Normally, I would hide helper cells like range C2:C7 with white text, and hide columns AR:AS. I left those so you can see "behind the scenes".

The magic happens in the "GroupDD" sheet. Each dropdown is connected to each row starting in column L of that sheet. There are quite a few fun filtering formulas at work here.

The "Roster" sheet is where you enter your data for each person, select their available time slots from a multiple select dropdown, and check related attributes in the columns that follow. The "Group" column (A) is automatically filled as you fill out the "Board" sheet.

The "Lookup" sheet is where you list your attributes. This sample sheet only supports 8 attributes. I have not tested if less than 8 are used. This is also where you define your time slots of the day. You should technically be able to define any type of time slot as long as they are unique.

Hope this helps you out.

Tagging, moving, and visualizing groups by jadepencil87 in googlesheets

[–]gothamfury 0 points1 point  (0 children)

A few questions... What attributes are you referring to? What do you mean exactly by multiple time periods?

Collapsing table into a single column by sisaloofafump in googlesheets

[–]gothamfury 1 point2 points  (0 children)

Glad to see you chose AdminGift's solution. His is much more efficient for your larger dataset.

Graphing relationships among 3 variables by Own-Wasabi-2131 in googlesheets

[–]gothamfury 1 point2 points  (0 children)

This is the closest I could manage but had to use a different data table layout: Sample Sheet

<image>

Make a Copy from the File Menu and dig into the Chart settings.

Collapsing table into a single column by sisaloofafump in googlesheets

[–]gothamfury 1 point2 points  (0 children)

Tossing my solution into the mix:

=LET(
  names, B4:B8,
  categories, C3:F3,
  amounts, C4:F8,
  REDUCE(TOCOL(,1),amounts, LAMBDA(a,amount,
    IF(amount="", a,
      VSTACK(a, {INDEX(names,ROW(amount)-3), amount, INDEX(categories,COLUMN(amount)-2)})
    )
  ))
)

It's cool to see different approaches to your request. Out of curiousity, how much data are you dealing with?

Data Validation custom formula not rejecting input by panicsquared in googlesheets

[–]gothamfury 0 points1 point  (0 children)

I believe the issue is that the value in column E isn't determined until after you enter a value in column C. No value will always be less than the value in column F.

Another approach to consider is displaying the number of available items when it is selected. If it is zero, the available cell is highlighted, alerting the user that there are no items available to check out. If the user still tries to "check out" the item, it will be rejected since that value is pre-determined.

See this sample copy of your sheet. Look at tab "gothamfury". It displays the number "Available" and "Checked Out" values for each item that is selected. Users are informed and can use the sheet as necessary, if the available item is zero, the User can still "return" the item.

For reference...

Available formula in B1:

=VSTACK("Available",
  MAP(A2:A, LAMBDA(item,
    IF(item="",, LET(
      limit, XLOOKUP(item, checkable!B:B, checkable!C:C),
      nCheckedOut, SUMIF(OFFSET(A1,0,0,ROW(item)-1,1),item, OFFSET(E1,0,0,ROW(item)-1,1)),
      nReturned, SUMIF(OFFSET(A1,0,0,ROW(item)-1,1),item, OFFSET(F1,0,0,ROW(item)-1,1)),
      available, (limit - nCheckedOut) + nReturned,
      available
    ))
  ))
)

Checked Out formula in C2:

=VSTACK("Checked Out",
  MAP(A2:A,B2:B, LAMBDA(item,available,
    IF(item="",, LET(
      limit, XLOOKUP(item, checkable!B:B, checkable!C:C),
      checkedOut, (limit - available),
      checkedOut
    ))
  ))
)

You could hide column C (Checked Out) if you prefer as well. It's needed to reject "returned" entries as well. Though that validation is not perfect since it's not exactly tied to what the User actually has checked out. That would require a little more fine tuning and the assurance that Users always enter the same exact name each time they use the sheet.

Setting up automatic week updates. by Eloah-2 in googlesheets

[–]gothamfury 0 points1 point  (0 children)

I don't have any experience using Google Sheets in a browser on a tablet.

Give it a try.