VLOOKUP Excel, results into one cell delimited with commas [closed] - excel

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
How do I get the desired result in column E? I need to look up the dates with VLOOKUP, but ignore the times of them. Then group the results in one cell. Can this be done without a VBA?

If you have Excel 2016+ and an O365 subscription you can use TEXTJOIN to achieve this
In cell E2 enter
=TEXTJOIN(",", TRUE,IF(DATE(YEAR($A$2:$A$6),MONTH($A$2:$A$6), DAY($A$2:$A$6))=D2,$B$2:$B$6,""))
And enter using Ctrl+Shift+Enter

Related

What is the meaning of this Excel formula? [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
=Indirect("D"&H4+1)
Can anyone explain what this formula does in an Excel sheet?
H4 will have a row number
H4+1 will add one to that number
"D"&H4+1 will create a string that looks like a valid cell address.
Indirect("D"&H4+1) turns that string into an actual valid cell address and will return the value in that cell.
But note that INDIRECT is Volatile and should be avoided when possible. Use INDEX instead:
=INDEX(D:D,H4+1)
Which does the same without the volatility.

Need Possible IF Statement Excel Formula [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
Require assistance with excel formula to subtract numbers from cells F2 & I2 if no data is in cell K2. If data is in cell K2,then I need formula to subtract F1 & K2 only.
Well, based on what you asked and what I understand, then the following may help:
If you are going to drag this down then you may need to control which cells move.
Edit, just spotted you said subtract so:
=IF(K2="",F2-I2,F1-K2)

How to Automatically Insert SUM Formula on Value [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I always work on my .xls that exported from my office application, but there is just value on account column that is a sum of total details in that account.
Can macro VBA automatically fill the values (in yellow highlighted cells) with sum formula?
My Sheet.xls

Sequence of numbers based on start and end value of 2 cells [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 years ago.
Improve this question
I have a number range in two cell (Q7 start) and (S7 end). I am needing help in creating a formula or macros to auto populate the sequence of the numbers inputted in columns D13:S16.
Thank you in advance for your help.
Sequence
Range
You can use these formulas
D13: =Q7
E13: =IFERROR(IF(D13+1>$S$7,"",D13+1),"")
Then copy E13 to the right as far as you need.

How to create an excel formula from cells that has int and str values? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
I am currently a scheduler in the restaurant I'm working. My manager has asked me if there's a way to generate a formula of the total time our workers work in a week.
I can get the sum of two cells if there are two different cells, as shown in the photo, but what formula or is there a formula where you can get the sum of two numbers from one cell? And they contain letters as well. 10:30am-04:30pm is = how many hours(formula).
See photo below
If you have dates in column A, you can use this formula in Column B to get time difference value in HH:MM output.
=TEXT((TRIM(MID(A1,FIND("-",A1,1)+1,10))-(LEFT(A1,FIND("-",A1,1)-3))),"hh:mm")

Resources