excel - if cell contains item set another cell to todays date - excel

What I am trying to achieve is when a cell contains a string value, then I want an adjacent cell to equal todays date:
for example
Order Number Date
1 05-11-2014
2 05-11-2014
no item
3 05-11-2014
so when there is an order number, I want excel to do =TODAY(), or display "no item"
the query will look something like this however im not sure on the 2 parameters to include after search
=IF(OR(ISNUMBER(SEARCH({"cell has no value","cell has value"},B13))),"no item",TODAY())
thanks for any help with this guys

assuming the formula is in cell B2 and the order number is in A2:
=if(isnumber(A2),TODAY(),"no item")

Related

MS-Excel Array Formula Problem : How do you get all the value in an array except the last one?

Now that I have found the way to make an array of dates from a date range (Ex. 12-08-19 to 17-08-19) using the following formula:
cell c2 : 01-10-18
cell d2 : 03-10-18
cell e2 : {=ROW(INDIRECT(C2&":"&D2))}
Result : {43374;43375;43376}
However, I need to get all the date from this array except the last one - then make it split out those day and put them under the column or row and later count for how many ; let say ; 01-10-18 in case that I have lots of date ranges containing 01-10-18.
In addition - each date range comes with created date - and I also want to assign the create date to those value as well so later I can accuulate numbers of Ex. 01-10-18 and compare between 2 created date for how many 01-10-18 has increased between a certain created date range.
Thank you in advance for your help :)

Excel Formula to Calculate Text within a date range

I am trying to calculate values within a specific date range. The data I want to split between each month and the values: Successful, Incomplete and Failed.
I've tried pivot tables with this data but it doesn't work for me, also lacking pivot table excel experience. Formulas I'm more comfortable with.
I am using the following statement to at least get the total number of a value I add into it;
=COUNTIF('Jan 19'!$C$2:$C$1159,"Value")
Ex. If I put into the value "Successful" I get the total number of successful records.
I am looking into having a formula that I can input a specific month/date range (Jan, Feb, etc) and a value to get a count.
Ex. =Formula ((RangeOfData, "Value") AND (RangeOfData, (FromDate, ToDate))
I expect to the get the total number of a value(s) within a specific date range. If there isn't any data then the results would be blank or 0.
I'd use the formula COUNTIFS() as #cybernetic.nomad pointed in the comments so you can put more conditions on the COUNT:
=+COUNTIFS('Jan 19'!$B$2:$B$1159,">="&F3,'Jan 19'!$B$2:$B$1159,"<"&G3,'Jan 19'!$C$2:$C$1159,H3)
In the formula above I guessed the dates are in the COLUMN B, if not, you need to change it in the formula above.
To do that we should put the range we want to look at in a couple of cells where you would put the date range, in the example above:
F3 is the start date (if you want February of this year should be 1/2/2019).
G3 is the final date (if you want February of this year should be 1/3/2019).
H3 is where you can write "value", "successful" or any other string you are trying to count.

Excel: Hyperlink to jump to current date

I got an Excel sheet with all the dates of the year. And on the Top i want to do a link to jump to the current date... I got this
=HYPERLINK(VERGLEICH(HEUTE();D:D;0))
Thats just giving me the number of the line, where the current date is located.
By the way: Vergleich = Match // Heute = Today
How do I do that?
If HYPERLINK shall link to a cell, D12 for example, then the hyperlink address must be #D12. So =HYPERLINK("#D12") will work.
If the 12 shall be variable according to a matched value, todays date for example, then this value must be concatenated into the hyperlink address.
Example: Column D contains date values. One of those is todays date.
=HYPERLINK("#D"&MATCH(TODAY(),D:D,0))
German Excel:
=HYPERLINK("#D"&VERGLEICH(HEUTE();D:D;0))
This works only if in column D are date values, not strings, and really date values only, without time, and todays date is among them.
Say we have dates in column D like:
This formula will give the proper row for the cell containing today's date:
=MATCH(TODAY(),D:D,0)
We can use this in the hyperlink formula:
=HYPERLINK("#D" & MATCH(TODAY(),D:D,0),"today")
For example:

Excel Vlookup Between Two Dates With Returning Multiple Data

Basicly i have a list of information and i need to be able to enter a start data in one cell and a end date in a different cell and then return all the dates between them.
eg.
input input
1/1/14 2/2/14
Return
Date Name
14/1/14 bob
17/1/14 bob2
20/1/14 bob3
Dont no if you can do this with vlookup or index and match but any help would be good
thanks all
Probably your best bet is an IF(AND) statement.
=IF(AND(G6>E6,G6<F6),TRUE)
Where G6 is the date you are checking, and E6 and F6 hold the date range. TRUE can be replaced with any value, including a reference to a different cell.

Formula to Add 1 to current cell if certain text is picked detected in a range of cells

I am currently making a spreadsheet which has information relating to properties, One of the columns lists the source for the property such as Zoopla, Rightmove, Fish4. I need a formula that will scan the entire Sources Column for 1 word and add a value to a cell that shows the total number of Sourced information from that source. I have been trying for sometime and cannot figure out the formula.
Rightmove Total = 3
Zoopla Total = 4
Any information is appreciated
try this:
=SUM(IF((A1:A5="Saint"),1,0))
if the searched string is found, assign 1 to each true condition. then add up the results and there you go!
Note: please change the column numbers and search string, as this is just an example
If I'm understanding your problem properly, what you need is the COUNTIF() function.
=COUNTIF(Sheet1!A:A, Sheet2!A2)
Will count the number of occurrences of the value within cell A2 of Sheet2, into column A:A of Sheet1.
So, if Sheet2!A2 has Rightmove and Rightmove appears three times in Sheet1!A:A, then the formula will return 3.

Resources