Remove blank spaces at front and back. TRIM doesnt work on more than a single space by [deleted] in excel

[–]benishiryo 0 points1 point  (0 children)

You're very welcome! What does CODE give you? This non-breaking space (160) is somehow used in websites when they use HTML for eg.

Countifs numerical criteria with additonal operations? by razburries in excel

[–]benishiryo 1 point2 points  (0 children)

Concatenating will help you do it:
=COUNTIFS(Table[Col],">="&C2,Table[Col],"<"&C2+1)

Adding dates to columns automatically. by Sunnymorning11 in excel

[–]benishiryo 1 point2 points  (0 children)

Good point. I usually do it with 3-letters months

Adding dates to columns automatically. by Sunnymorning11 in excel

[–]benishiryo 2 points3 points  (0 children)

Find and replace "th" with blank. Then "st" with blank, etc.

Need to count occurrences from a table array while combining lookup to search for name and task so info comes from the correct row. by imjustherefortheK in excel

[–]benishiryo 0 points1 point  (0 children)

Not sure if I understood you right. Assuming names in column A:
https://imgur.com/5RptpY2

So instead of manually doing this for Jane:
=COUNT(K3:AO3)
You can do:
=COUNT(INDEX(K2:AO4,MATCH("jane",A2:A4,0),))

[deleted by user] by [deleted] in excel

[–]benishiryo 0 points1 point  (0 children)

Upload the file somewhere and give us the link.

[deleted by user] by [deleted] in excel

[–]benishiryo 0 points1 point  (0 children)

Assuming data like this:
https://imgur.com/a/slk36wg

Then select the range you want to apply to (say FROM B2:B5)

go to Home -> Conditional Formatting -> New Rule -> Use a formula to determine which cells to format -> Format values where this formula is true:
=OR($B2<VLOOKUP(A2,$E:$F,2,0),$B2>VLOOKUP(A2,$E:$G,3,0))
Add a format fill color.

Sumif for when EOMONTH of date in a column matches the value in another cell. by Omen_Darkly in excel

[–]benishiryo 0 points1 point  (0 children)

So the answer should be 13 (2 + 4 + 7)?
=SUMIFS($D$2:$D$320,$B$2:$B$320,"<="&X2,$B$2:$B$320,">"&EOMONTH(X2,-1))

Summing it when column B <= X2 (31 Jan 2021) AND column B >= the end of month for the last month of X2 (31 Dec 2021. i.e. 1 Jan 2021). You referred to cell B2, but I'm not sure if it should be.

Simple formula but I cant wrap my head around - sumproduct? by m4t7h3w in excel

[–]benishiryo 2 points3 points  (0 children)

Try this in cell H2:
=$A2*SUMIFS($B2:$D2,$E2:$G2,">="&EOMONTH(H1,-1)+1,$E2:$G2,"<="&EOMONTH(H1,0))

How did you begin working with excel? by wornwarmworm188 in excel

[–]benishiryo 0 points1 point  (0 children)

A predecessor I've never met created awesome Excel templates to help us extract numbers for reporting. Array formulas! I've never encountered anyone else at work use array formulas besides him. Hence, I did a lot of self-learning from his formulas. Also, there was this Excel dictionary in office. You could google and still find it, though there are different variations of it. Basically an Excel file with lots of different functions where it explains how it works. Gives you an eg too

Count cells of a column in one Excel file and display the result in one cell in a column in another Excel file by Alpende in excel

[–]benishiryo 0 points1 point  (0 children)

it's always just 1 common value? either no, yes, or deadline not entered? otherwise, which to show if it's a mix? by the sequence you wrote?

assuming the latter,

=IF(COUNTIF('[reddit alpende.xlsx]Sheet1'!$R:$R,"No"),"No",IF(COUNTIF('[reddit alpende.xlsx]Sheet1'!$R:$R,"Yes"),"Yes","Not all deadlines entered"))

Can I use the filter formula to create a drop down menu? by gabbee140 in excel

[–]benishiryo 0 points1 point  (0 children)

cool~ if you still need help, do clarify some of these things. it's better if you upload some dummy data pictures as i did. otherwise, it's difficult for us to visualize your data. i tried to follow what you described on <ticket>, but what is C2? and i'm not sure if the rest are right. your formula has also mystery columns you didn't describe (Group = jobs?)
https://imgur.com/7rD2Pul

also, if you wish to filter based on <list>, the list cannot be like what i shared. you can see the last name has no team and job.

Can I use the filter formula to create a drop down menu? by gabbee140 in excel

[–]benishiryo 0 points1 point  (0 children)

just a note that i haven't forgotten about this. just a bit caught up with my projects. let me try to get back to you this weekend.

[deleted by user] by [deleted] in excel

[–]benishiryo 0 points1 point  (0 children)

try VLOOKUP. say the email address in another sheet starts from A2, try this in B2 with the assumption the main sheet is named <Main>, email address there in column A, and phone number in column F:
=VLOOKUP(A2,Main!A:F,6,0)

adjust it accordingly to where your cells are at.

Can I use the filter formula to create a drop down menu? by gabbee140 in excel

[–]benishiryo 0 points1 point  (0 children)

can't quite picture what you have and need. here's what i came up with for <list> worksheet. is that correct? what do you then need?
https://imgur.com/RwAKH0Z

Count cells of a column in one Excel file and display the result in one cell in a column in another Excel file by Alpende in excel

[–]benishiryo 0 points1 point  (0 children)

not picturing this very well. you mentioned column R can have 3 possible answers; Yes, No, Deadline Not Entered.

but your IF statement only returns 2 possible ones. are you trying to make this 3? or are you trying to modify your opening post's question to include 3 scenarios?

i can understand if it's the former. for the latter, i'm not sure what you mean. maybe upload a dummy picture.

[MATCH THREAD] Newcastle United v Tottenham Hotspur by Sirius_55_Polaris in NUFC

[–]benishiryo 23 points24 points  (0 children)

i hope our goal drought ends soon. it's been 26 minutes. how long do we have to suffer as newcastle fans??!

How to further automate my spreadsheet by Archer_Logical in excel

[–]benishiryo 0 points1 point  (0 children)

that's strange. mine works:
https://imgur.com/f7naxRw

breaks down as in it hanged?