Hi rahulsharma012
Assuming that your data is as follows:
In column A:
A1: Mr. Anil Mehta919829042971udaipur@arihantbearing.com
A2: Mr. H.S. Bhandari / RajivBhandari9414126710etepl@rediffmail.com
Then in the following cells & copy down.
B1...
Hi gizmo
For a formula approach. Assuming your data is in A1:C10 (Inc. column headers).Cell F1 has the phase criteria: Pre-Cert. Cell H1 has the Person criteria: Angela. The formula is assuming that you are using Excel 2007 >. For earlier versions replace the IFERROR with IF & ISERROR...
@ DaveTurton
That is correct, I only used ROW($1:$25) as the max position of last digit in the OP list was 21. Use ROW($1:$50) if you want to.
@ bobhc
The ROW in the formula is absolute.
As you know, when you insert new rows it moves every thing down, hence the use of the INDIRECT...
Hi bobhc
When you insert a row above A1 the ROW part of the formula becomes: =ROW($2:$26)
Giving you a array constant:
{2;3;4;5;6;7;8;9;10;11;12;13;14;15;16;17;18;19;20;21;22;23;24;25;26} instead of:
{1;2;3;4;5;6;7;8;9;10;11;12;13;14;15;16;17;18;19;20;21;22;23;24;25}
So if in A1: "Side...
Hi mohammedkhan
Assuming your data is in cells A1:A4 in B1:
=1*MID(A1,MATCH(TRUE,ISNUMBER(1*MID(A1,ROW($1:$25),1)),0),COUNT(1*MID(A1,ROW($1:$25),1)))
This is a array formula and must be committed: CTRL + SHIFT + ENTER
Copy down to B4
Hi Ecel Dumbo
Try the following LOOKUP,in C3 copy across and down. The TRIM fuction has been used as you have trailing spaces.
=LOOKUP(2,1/(('LookUP Sheet'!$E$2:$E$61=$A$1)*('LookUP Sheet'!$G$2:$G$61=C$2)*('LookUP Sheet'!$F$2:$F$61=TRIM($A3))),'LookUP Sheet'!$K$2:$K$61)
OR a SUMPRODUCT...
Hi phani.gamini
Not quite sure if I understand the question. You want the date to display within apostrophe at each end, it will not be a date then!
Assuming your data is in column A in column B an copy down:
=TEXT(A1,"'dd-mmm-yy'")
Hi
A couple of ways of many, is the:
Assuming data is in A1:A5
SUMPRODUCT: =SUMPRODUCT(--(MONTH(A1:A5)=1))
SUMIFS: =COUNTIFS(A1:A5,">=01/01/2013",A1:A5,"<=31/01/2013") for Excel 2007>
Change month etc to suit.
Hi
I do not quite follow you. but assuming you have dates for tests in column A, then you could use/adapt the following formulas for the conditional formatting.
1/ =AND($A1<>"",$A1>TODAY(),$A1<=TODAY()+90) Less then equal to 90 days
2/...
@ bobhc
Then it would be logical to set your sheet up Start_Time Lunch_Out Lunch_In Finish. Because where I come from, if you had say a doctors appointment, people take it over their lunch time so if they are running late they do not loose much time. Also we have procedures to follow in the...