Birthday Indicator Formula
Dec 1, 2008
I have a table with employees' persinal data including birthdays. My aim is to insert an indicating field that would show whether the birthday is gonna come soon.
It shold have several states:
number of days left if the birthday is current or next month
"not soon enough" if the birthday will come in more than 2 months (later than next month);
"happy birthday" if it is today;
"the past weekend" if it was the past weekend and it is Monday today.
What can you suggest?
View 14 Replies
ADVERTISEMENT
Feb 20, 2014
I work for a farm where we receive fresh produce from harvesters daily. I created a workbook with worksheets(ws) for my daily inventory counts according to product type and separate worksheets for each day of the week showing the orders shipping for that particular day.
I collaborated the data from the inventory count ws and the ws for each day into one ws called Harvest. I am trying to figure out how to keep a running total of what needs to be harvested vs. what is in inventory so that I can show my harvesters what new product is needed to fill orders for today forward, after subtracting what is available in inventory, and showing the amount shipped for past days . Another part that's throwing me is that harvest brings in new product daily and sometimes they bring in a surplus.
Here is an example:
Lets say today is Tuesday and my Inventory ws shows we have 50 kale in inventory - cell D10
Monday ws shows an order for 50 kale, cell D14
Tuesday ws shows an order for 100 kale, cell D14
Wednesday ws shows an order for 100 kale, cell D14
Thursday ws shows an order for 100 kale, cell D14
On my Harvest ws, Since today is Tuesday, how would I keep the Monday cell showing 50 kale as the amount shipped on Monday, Tuesday cell showing we need 50 kale to be harvested to add to the 50 in inventory and fill the order of 100, Wednesday cell showing that we need 100 kale harvested, and Thursday showing that we need 100 kale harvested?
If Harvest brings in a surplus of 100 kale on Tuesday so we have 100 kale in inventory on Wednesday how do I get the Harvest ws to now show that Monday cell should still show 50 kale shipped, Tuesday cell should show 100 kale shipped, Wednesday cell should show that we don't need any kale harvested since we are using the 100 surplus in inventory, Thursday cell should show we need 100 kale harvested.
View 14 Replies
View Related
Jul 10, 2014
When speaking with parents I want them to enter in their child's birthday i.e. 12/1/1998 in one cell and then automatically generate what grade they should be in the next cell. If the grade year cutoff date is Sept 1.
View 2 Replies
View Related
Jan 7, 2009
I have a column with people(A) and their date of birth(C). I'm looking to find out the number of days when their next birthday is. I searched through here and couldn't find anything. Is there a formula I can use that would calculate this, year after year after year??
View 4 Replies
View Related
Jan 26, 2009
I am hopeless at remembering birthdays tbh - so rather than rely on family to remind me, I decided to make a spreadsheet that shows: D.O.B, current age (in years, months, days), and number of days remaining until next birthday.
Please see attached - I can't figure out why the current age calculation is a month out. e.g 'Sebastian' was born on 16 Nov 2008, which makes him 3 months and 11 days old - but '=TODAY()-C16' yields "00 Years 4 Month(s) 12 Days"
Also, 'Leah' has just her birthday - but now where it is supposed to give 'days until next birthday' it gives an error with the formula: '=DATEDIF(TODAY(),EDATE(C4,(YEAR(NOW())-YEAR(C4))*12),"d")'
View 6 Replies
View Related
Apr 16, 2012
I have the dates of birth for a load of employees and have been asked to report on all those who will be reaching the age of 62 between 2012 (today) and 31st December 2021.
View 2 Replies
View Related
Jul 26, 2008
I'm using Excel 2002 and looking for a way to get rid of the red comment indicator in entirety. While I get that it's not possible there appears to be a workaround which I took off the Contextures website.
Sub RemoveIndicatorShapes()
Dim ws As Worksheet
Dim shp As Shape
Set ws = ActiveSheet
For Each shp In ws.Shapes
If Not shp.TopLeftCell.Comment Is Nothing Then
If shp.AutoShapeType = _
msoShapeRightTriangle Then
shp.Delete
End If
End If
Next shp
End Sub
View 9 Replies
View Related
Nov 18, 2013
I have prepared one dash board which having the data for all my employee and clients birthday and anniversaries dates. And i have to check this file and send the E-mail wishes and Mobile messages ( for this we are using SMS country software for bulk messages) .
In column H:H i have birthdays and in B:B i have the name of the employee. so i am using the formula =IF(TEXT(H2,"dd-mm")=TEXT(TODAY(),"dd-mm"),B2,"") to display the Today's Birthday. Now i need to update two things here.
1) Need a formula to display the upcoming birthdays with in a month . for this i am using =IF(TEXT(H2,"mm")=TEXT(TODAY(),"mm"),B2,"")it works well but i need to show the total upcoming birthdays in one place only. suppose the names in B2 ,B10 , B25 having the birthdays in this month it will shows the result in I2 ,I10 , I25 . but i need it to show in one place or in one shape .
2) I need to send Wishes mail to them . Is there any macro to send the wishes mail to those are having the birthday's today ?
View 2 Replies
View Related
Feb 22, 2010
On my worksheet I have a date of birth formated yyyy-mm-dd. On my form, I want to be able to identify anyone younger than 16. I tried subtracting from today's date on the worksheet, but that didn't work too well for me.
View 2 Replies
View Related
Mar 5, 2008
I use the following fomula to test and advise of an upcoming birthday:-
=IF(AND(MONTH(TODAY())-MONTH(B6)=0,DAY(B6)-DAY(TODAY()) 25.
View 9 Replies
View Related
Nov 25, 2006
I am an amateur numerologist (I know what you're thinking), and I'm trying to create a spreadsheet/database worksheet that I can enter birthdays into and it will do the Numerological calculations for me. It may be a fairly complicated thing to set up, but if I could do this, it would help out my hobby a lot.
View 5 Replies
View Related
Apr 29, 2014
I have a sheet with work tasks on. Column I shows the completion date for each project. In column J I would like an automated response linked to todays date. Can we use row 2 as our example? So I need in this case cell J2 to show the following:
- If todays date is more than 5 days before the completion date (in cell I2) I would like the cell J2 to show "IN PROGRESS"
- If todays date is less than 5 days before the completion date (in cell I2) I would like the cell J2 to show "AT RISK"
View 4 Replies
View Related
Oct 14, 2009
i have a data of empl their birthdate wise. i want it to sorting from birth day wise for example first " DAY then Month then year". day come first then month then year. find attched file.
View 3 Replies
View Related
Nov 4, 2011
I have a macro that takes quite some time to run, 3-4 minutes is it possible to have a % progress indicator in the status bar to let me know how much of the process has been completed so far?
View 5 Replies
View Related
Oct 6, 2008
I am using the following to import a text file w/ ~86000 lines into Excel: ...
View 9 Replies
View Related
Oct 6, 2006
I’m trying to implement a progress indicator into my spreadsheet. I used John Waltenbach book, but I’m not able to get it up and running.
Basically what I’ve got so far is a user form which appears directly when the spreadsheet is open....
View 9 Replies
View Related
Apr 19, 2007
I don't know if this can be done. When i put on an autofilter in a spreadsheet, and I filter on a particular column, the autofilter arrow is highlighted in blue to show that I have filtered this column. Is there anyway I can change the colour of this indicator from blue to say red?
View 3 Replies
View Related
Jun 1, 2008
I am trying to have a Number Line representing age of retirement.
I want to have a cursor on it Positioned on the number line which will move to desired age as I change the value of Cell representing Age.
Can this be done on Excel. I think so. Using User form or any thing like that will be ok as I need it for presenting a report.
View 9 Replies
View Related
Dec 21, 2012
If a cell contains a birthdate, how do I count the number of days till the next birthday? The date is entered, as an example "1/1/2013".
View 5 Replies
View Related
Jul 7, 2012
i have a excel file which contains Name(column A),DOB(column B), & email address(column C),.
i would like to send birthday wishes mail automatically to the people according to their bday.
there may be "n" number of people on a particular day. i would like to send a single mail to all the people.i am using microsoft outlook.
When i open that excel file, it should pop up the New Message window of outlook with all email ids in the To. field with "Happy B'day" as subject and Message body as :"many more happy returns of the day & have a nice n wonderful day ahead".
View 9 Replies
View Related
Mar 29, 2009
Im trying to input data where im updating customers and friends birthdays. I wanted to see if i could input a formula and conditional format or a pop up to remind me a week before someones birthday in the future.
e.g
NameD.O.BReminder Johanne Stevens01/04/1978Mike Chandler15/05/1988Michael Owen28/02/1972
View 9 Replies
View Related
Nov 11, 2008
I've a long list of value with indicator which I need to compare with an entry after which it need to return a text indicator. I'm using IF and MATCH function.
Following is the code I use:
=(IF(MATCH(C1,$D$5:$D$29,0)<=5,$E$9,IF(MATCH(C1,$D$5:$D$29,0)<=10,$E$14,IF(MATCH(C1,$D$5:$D$29,0)<=1 5,$E$19,IF(MATCH(C1,$D$5:$D$29,0)<=20,$E$24,IF(MATCH(C1,$D$5:$D$29,0)<=25,"Not Found"))))))
I've attached an excel file with an sample. Btw, Is there anyway I can omit the length of IF & MATCH function by using other function.
View 4 Replies
View Related
Jul 24, 2014
I want to put progress indicator for data input in Excel.
The data input is in cell A1 until A10, and B1 until B10.
So, I need two progress indicator (for cell A & B).
View 13 Replies
View Related
Jan 27, 2014
I'm looking for a formula that will return the time left to a birthday, in Month and Days.
View 5 Replies
View Related
Jun 8, 2009
I got three columns. The left one is the day number. The middle column is for indicator variables 1 or 0. This is suppose to be chosen by the solver function. I want the third column to show the DIFFERENCE between the "chosen" days. This can be better explained through an example:.......
(extra information: the indicator values are chosen by solver based on several criteria not stated here, but this particular part of the sheet is suppose to refrain the chosen days to have differences between them larger or smaller than a given value.
View 2 Replies
View Related
Aug 4, 2014
I have a macro that calls 3 other procedures during its run. I have the positon set in the UpdateIndicator sub
With ProgressIndicator
.Top = Application.Top + 300
.Left = Application.Left + 400
end with
and the Userform StartUpPosition property set to 0 - Manual (though I did experiment with the other settings as well.
The issue is that when the series of subs are running, the Indicator jumps and shifts (by 10 or so pixels down and right) and sometimes blinks off completely as each new sub is being called and subsequently returns to the initial macro.
It is accurate and does what it's supposed to do, I just find it annoying and that it probably looks a bit unprofessional (and unstable) to the eyes of some coworkers who use the macro as well.
View 2 Replies
View Related
Dec 12, 2013
I would like to add a visual indicator to my sheet that checks if a specific file exists in the same directory as the active workbook.
The filename format would look like: "something.invoice.(mm-dd-yyyy).xlsm"
The macro would check the =today date, calculate the previous month, and check to see if a file named that exists.
View 2 Replies
View Related
Jun 7, 2007
is it possible to show progress indicator if macro execution take some considerable time say more than 10 seconds?
View 2 Replies
View Related
Jul 12, 2009
I currently use the following formula in Conditional Formatting to highlight a persons birthday:
=$R1=DATE(YEAR($R1),MONTH(TODAY()),DAY(TODAY()))
which changes the colour of the cell on their birthday. However, I need to amend this formula so that the highlighting applies to the current week, as in Sunday thru to Saturday. My amendments have not been successful and you cannot use the WEEKNUM function in conditional formatting for some reason!
View 4 Replies
View Related
Mar 16, 2009
I want to use a msgbox as a progress indicator for a routine in an application. I cant figure out how to do this.
View 5 Replies
View Related