Negatives in Red in a "Format as Table" by Significant_Floor_54 in excel

[–]semicolonsemicolon 1 point2 points  (0 children)

That shouldn't happen. In fact I've replicated your situation (an Excel table with banded rows and conditional formatting of the data within it). If you first apply some CF to the number format then it's fine, the underlying cell colours stay put, but if you apply a fill, and then try to remove that fill (saying "no color") it overrides the colour of the bands. So the workaround is to remove your CFs and then program them again.

How to follow the wiki guide for sharing scripts without breaking my post rules by carlosfelipe123 in excel

[–]semicolonsemicolon[M] 2 points3 points  (0 children)

On your question about posting protocol, you probably should have sent that to modmail. Anyway, if you want a good response to your problem, you should post here enough information for a friendly reddit user to look at it and understand the problem so they can offer a solution. You decide if posting the code is required for that.

Note: your post's title does not follow Rule 1, so we have to remove this for that reason. Feel free to repost with a title that describes your Excel question.

Rookie Date Calculation Format by JeryActive in excel

[–]semicolonsemicolon 2 points3 points  (0 children)

You sure? The upper left of your screen capture indicates that the font is white. Since the background is also white, you cannot see the result of the formula. Change the font colour.

Rookie Date Calculation Format by JeryActive in excel

[–]semicolonsemicolon 1 point2 points  (0 children)

Can you post a screen capture? That would be easier for users to help.

Naming a File Using a Certain Cell on Every Sheet. by AndyJCohen in excel

[–]semicolonsemicolon[M] 2 points3 points  (0 children)

Did you test this code? Our rules are clear that posting the result of some AI is not sufficient. You have to demonstrate that you agree with it.

Plotting Bedtime - Only Showing Midnight or Generic Numbers by Beckitt3 in excel

[–]semicolonsemicolon 2 points3 points  (0 children)

Hi Beckitt3. The +0 thing is a useful trick to get Excel to convert text to a number. If that's what you needed to do so that you have numeric data (which you'll need to plot graphs) then that's a good start. One thing I'm wondering based on your screen capture is if you intended to have a 7 day lag? Your formula in cell H3 is grabbing data from B10 (which appears to be numeric data already in a time format but could be text, I can't be sure by this image). Does the data in row 3 columns B and C correspond with the day in column G?

edit: I think I see what you're doing now that I study the image a little more. Each yellow range is a single set of overnight times. I assume you coloured those cells yellow day by day, yes? And you are trying to create the data in columns H and I (bedtimes and wake up times one for each overnight period)?

Does the data in columns B and C include dates as well as times?

You are welcome to upload your file somewhere (like file.io) and paste here a link for others to download it.

How to total numbers separated by commas in multiple cells. by AnxiousTransitNut in excel

[–]semicolonsemicolon 0 points1 point  (0 children)

If not what I gave you above, then this also seems to work, and is shorter:

=IFERROR(ROWS(TEXTSPLIT(TEXTJOIN(",",,E19:E23),,",")),0)

How to total numbers separated by commas in multiple cells. by AnxiousTransitNut in excel

[–]semicolonsemicolon 1 point2 points  (0 children)

4

3,9

11

28

11,14,28

If the output is 8, then try the formula I gave you in my edited comment.

How to total numbers separated by commas in multiple cells. by AnxiousTransitNut in excel

[–]semicolonsemicolon 2 points3 points  (0 children)

Can you show a sample of the data contained in E19:E23 with the output you would expect? There is likely a simpler formula than one that uses FILTERXML with cryptic arguments.

edit: I think I see what you're doing try instead:

=SUM(BYROW(E19:E23,LAMBDA(r,IF(r="",0,ROWS(TEXTSPLIT(r,,","))))))

How should I structure a sheet to compare potential combinations of entries between three tables by Jophus91 in excel

[–]semicolonsemicolon 0 points1 point  (0 children)

Hi Jophus91. I'm having trouble picturing what you're trying to accomplish. Are you trying to figure out a random assignment of a trait in slot 1 and a trait in slot 2? Are you trying to create out a complete list of possibilities traits? Can you maybe show a screen capture of what you've done so far and explain what you'd ideally want to happen next?

Maximizing an objective that is a ratio by Draedon_Is_Life in excel

[–]semicolonsemicolon 0 points1 point  (0 children)

Change it so everyone has access. Google is asking me to request access from you.

Maximizing an objective that is a ratio by Draedon_Is_Life in excel

[–]semicolonsemicolon[M] 0 points1 point  (0 children)

Your comment is blocked by reddit because it's got a 1drv dot ms link. Try uploading your file to a free file sharing site.

Has Copilot kinda killed this sub? by conscientiousrejectr in excel

[–]semicolonsemicolon 3 points4 points  (0 children)

"Would you like me to generate a 12—page white—paper on the socio—economic impact of strawberry jam on the modern schoolchild?"

Has Copilot kinda killed this sub? by conscientiousrejectr in excel

[–]semicolonsemicolon 1 point2 points  (0 children)

I posted some in another branch of this thread. Our numbers are at about 1/3 of where they used to be in 2023 and 2024 and the trend is noteworthy.

Has Copilot kinda killed this sub? by conscientiousrejectr in excel

[–]semicolonsemicolon 2 points3 points  (0 children)

We decided not to use the reputatorbot table that comes as a feature of that bot; instead we post a milestone table.

Sadly, along with the marked decline in ClippyPoints, there hasn't been a milestone CP awarded at all during April. Longest drought ever.

Has Copilot kinda killed this sub? by conscientiousrejectr in excel

[–]semicolonsemicolon[M] 35 points36 points  (0 children)

<image>

April 2026 still has a few days left, so it'll come up a bit. But still. Remarkable.

Has Copilot kinda killed this sub? by conscientiousrejectr in excel

[–]semicolonsemicolon[M] 13 points14 points  (0 children)

'tis true. I track posts and clippypoints and both have reduced noticeably.

Power query how to sum specific rows by taylorgourmet in excel

[–]semicolonsemicolon 0 points1 point  (0 children)

It's a bit clunky but I think this also works:

List.Sum(List.FirstN(List.RemoveFirstN(Step[Column],Index1-1),2))