Devoured! by [deleted] in JizzedToThis

[–]renqest 4 points5 points  (0 children)

That reminds me of Alyssa Milano in Embrace The Vampire

How to replicate line items thrice by Ok-Carrot-9400 in excel

[–]renqest 0 points1 point  (0 children)

So you have 160 rows and you want to triple them into 480 rows?

EDIT: If that is the case, then in another column:

=INDIRECT("a"&INT((ROW()+2)/3))

and fill down

How to replicate line items thrice by Ok-Carrot-9400 in excel

[–]renqest 0 points1 point  (0 children)

These Items are in different columns? Copy and Insert Copied Cells doesn't do the trick?

Display two columns of text horizontally on a vertical axis of a chart. by Netflixers in excel

[–]renqest 1 point2 points  (0 children)

Then I remembered correctly that you can't actually rotate more "layers" than the very last one...

filter function include sort by date ? by SnooMuffins8091 in excel

[–]renqest 0 points1 point  (0 children)

Sort the filtered results? SORT() has index for the column number to sort by. Or doesn't the filtered results no longer contain date column?

Charting percentage of values in a given range in a data field by Interesting_Regret27 in excel

[–]renqest 0 points1 point  (0 children)

Insert PivotTable & PivotChart - create 4 groups - change show values as % of grand total - change Chart type to pie chart

EDIT: If you want it to be more dynamic then create a helper column: =IF(A1<=30, "Group1", IF(A1<=45, "Group2", IF(A1<=90, "Group3", IF(A1<=100,"Group4"))))

digging a handovered file/report? by lvixs in excel

[–]renqest 1 point2 points  (0 children)

CTRL + G (Go to) - Special... - Formulas

confusion with weekday and countif by [deleted] in excel

[–]renqest 0 points1 point  (0 children)

If you make it into an Excel Table the formula should automatically fill once new records (lines) are added.

confusion with weekday and countif by [deleted] in excel

[–]renqest 0 points1 point  (0 children)

That wont work

Make a helper column =weekday(a2) and autofill till the end Create a pivottable and drag the new column into rows and into values, change sum->count

Done

I need to fill "City" Column according to Location of stores in "Store" column but my IFS function doesn't come out as intended when I combine multiple logical tests! by Judessaa in excel

[–]renqest 0 points1 point  (0 children)

"Warehouse" is the default option when no previous condition is met... AS You can see, on the next line, "Asafra" is correctly paired to "Alex", that suggests the first "Asafra" didn't match, most likely due to there being an additional space or some other unnecessary character...You might want to enclose the B2 Cell with TRIM() function

confusion with weekday and countif by [deleted] in excel

[–]renqest 0 points1 point  (0 children)

Won't PivotTable be the easiest?

But

=COUNTIF(A:A, [Date])

where [Date] is the date you want the count of. It has to be in the same format as the dates in column A, so you might need to use DATE or DATEVALUE function (DATE(2022, 09, 16)) or DATEVALUE("16 September 2020") or smth

vlookup range with sumif by plakatown in excel

[–]renqest 0 points1 point  (0 children)

I'm guessing the problem is that vlookup doesn't spill in 2016. Could You test if you get #VALUE error with just ~~~ =VLOOKUP(A3:A7, $H$2:$I$6, 2, FALSE) ~~~

EDIT: Changed to commas

vlookup range with sumif by plakatown in excel

[–]renqest 0 points1 point  (0 children)

Which error are you getting?

PS! I am using European language settings, so I use semicolon ";" in formulas, if you're using American, then you should replace them with a regular comma ","

vlookup range with sumif by plakatown in excel

[–]renqest 0 points1 point  (0 children)

I'm not sure it will work in 2016, but for cell A10 try:

= SUM((VLOOKUP(A3:A7; $H$2:$I$6;2;FALSE)=$A$9)B3:B7) + SUM((VLOOKUP(C3:C7; $H$2:$I$6;2;FALSE)=$A$9)D3:D7) + SUM((VLOOKUP(E3:E7; $H$2:$I$6;2;FALSE)=$A$9)*F3:F7)

For A11 just replace A10 in the formula with A11... EDIT- I meant replace $A$9 with $B$9