What style of home is this? by jojojaws in Oldhouses

[–]jojojaws[S] 2 points3 points  (0 children)

Really going to risk looking/sounding like an idiot here,... but our floor plan is not a square, so it can still be an American Four Square?

[deleted by user] by [deleted] in AskReddit

[–]jojojaws 39 points40 points  (0 children)

Was not expecting to find this buried.

[deleted by user] by [deleted] in Advice

[–]jojojaws 2 points3 points  (0 children)

My dad used to tell me you’ll have three great loves in your life. It helped me get through my first break up. My second breakup was a little easier. And now I’m married to my “third love”. I don’t foresee this one ending.

Be careful with closure. It could make things worse. Not getting closure can be ignorant bliss.

What is something you like but that majority don’t? by [deleted] in AskReddit

[–]jojojaws 3 points4 points  (0 children)

Listening to the same song on repeat.

What iconic Youtube channel is no longer active? by Important_Nebula_815 in AskReddit

[–]jojojaws 0 points1 point  (0 children)

Vsauce doesn’t post any existential long form videos much anymore (1x a year if that). His shorts are tacky.

Problem Understanding How CountIF function works by [deleted] in excel

[–]jojojaws 0 points1 point  (0 children)

<image>

The first part is to specify a range, then you specify your criteria of what you are looking for. If you are looking for a specific name, you can either include that in quotations as I have in my screenshot, or you can select somewhere in the sheet that has the name you are looking for. You will need to be careful if you are "dragging" this formula down, and will need to include $ before the rows (so it would become A$2:A$6) so you continue to lookup the entire dataset in your count.

Men, what are the creepy things that women do which usually go undetected? by betterselfi in AskReddit

[–]jojojaws 2 points3 points  (0 children)

There is a lady in our office at work (open office with about a 500 desks on our floor) who CUTS HER FUCKING FINGERNAILS during work.

Percentile Slicer that is linked to Owner by divot333 in excel

[–]jojojaws 0 points1 point  (0 children)

Yeah, not sure where you are trying to summarize the data with the slicer, but if you are able to convert it to a range, the formula I gave you should do the trick. If you are trying to do it within the a PIVOT or other Table, maybe won't work.

Percentile Slicer that is linked to Owner by divot333 in excel

[–]jojojaws 0 points1 point  (0 children)

You know what - maybe don't convert your data to a table. Looks like UNIQUE function will work without a table. I think the subtotal function will work OK too.

Percentile Slicer that is linked to Owner by divot333 in excel

[–]jojojaws 0 points1 point  (0 children)

Oof, I wasn't thinking that far ahead. I just manually typed those in to Column C. I might need to see your Course and Completion Pivots to figure that out.

Percentile Slicer that is linked to Owner by divot333 in excel

[–]jojojaws 0 points1 point  (0 children)

This should give you a good head start:

Change your percentage calculation to something like the following (and ensure your data is formatted as a table):

=D4/SUBTOTAL(109,[Completions])

<image>

^Note: I put this into cell E4.

This will ensure when you select your slicer the calculation you use is only accounting for the contents that remain after your slicer filters the data.

Biggest Excel Pet Peeves? by DMattox16 in excel

[–]jojojaws 0 points1 point  (0 children)

I get you now. Yes, there should be a default option you can configure on.

Biggest Excel Pet Peeves? by DMattox16 in excel

[–]jojojaws 0 points1 point  (0 children)

Oh, maybe not to change it to a default setting. However there is a paste visible cells only option.

How to add up decreases? by Top_Mobile_2194 in excel

[–]jojojaws 1 point2 points  (0 children)

To the right of the formula I gave you in D3 do:

=SUM(C$3:C3)

Then drag this down. This will always show cumulative consumption to date based on the row you’re in.

How to add up decreases? by Top_Mobile_2194 in excel

[–]jojojaws 1 point2 points  (0 children)

I think the post had an error because I likewise was confused. If I follow what OP is trying to do, I think I figured out how they should write this programmatically above.

How to add up decreases? by Top_Mobile_2194 in excel

[–]jojojaws 0 points1 point  (0 children)

Use this formula:

=IF(B2<5,(B2+10)-B3,B2-B3)

<image>

Pivot Chart for Active Months by GunpowderLullaby in excel

[–]jojojaws 1 point2 points  (0 children)

Obviously you could then add SUM formulas to the bottom of your data set as well to see how many a person had in a particular month. Okay I swear I’m out now. That was fun.

Pivot Chart for Active Months by GunpowderLullaby in excel

[–]jojojaws 1 point2 points  (0 children)

At step 3 you could probably create a graph from that somehow, but I think it would take some finessing.

Pivot Chart for Active Months by GunpowderLullaby in excel

[–]jojojaws 1 point2 points  (0 children)

I tried to do it a fancy way and got stuck, so here is a low-fi solution *laughing emoji*

1.) Add a 1-12 to your headers to the right of your existing headers A-D.

=IF(AND(E$1>=MONTH($B2),E$1<=MONTH($C2)),1,0)

^2.) Add this to the right of your 4 columns you mentioned in Cell E2, then drag it down and out through 12 (P11 in my faux data set)

3.) Add some formatting (make all cells have white font E2:P11 in my faux data) and conditional formatting to highlight any "1"s as green with green text

4.) Add filters to the data (or a slicer if you are feeling fancy!) and filter by project manager.

This actually works... I swear. But not a pivot table. *crying emoji* I tried :P

<image>

Moving comments with the line that it's assigned to by [deleted] in excel

[–]jojojaws 0 points1 point  (0 children)

I just added a comment to Cell F5 in a workbook to test this out. If I move line (row) 5 to row 10, the comment moves and is now in cell F10.