EXCEL DATE FORMULA (TRICKY)
Closed
Abbas
-
Jul 18, 2010 at 01:13 AM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Aug 3, 2010 at 06:00 AM
rizvisa1 Posts 4478 Registration date Thursday January 28, 2010 Status Contributor Last seen May 5, 2022 - Aug 3, 2010 at 06:00 AM
Related:
- EXCEL DATE FORMULA (TRICKY)
- Date formula in excel dd/mm/yyyy - Guide
- Excel grade formula - Guide
- Number to words in excel formula - Guide
- Logitech formula vibration feedback wheel driver - Download - Drivers
- Excel apk for pc - Download - Spreadsheets
2 responses
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
Jul 18, 2010 at 05:57 PM
Jul 18, 2010 at 05:57 PM
I am not sure about if dates are in future or past etc
How ever you can use date manipulation to see if this date fall in other month. Some thing like this
IF(TEXT(A1,"YYYYMM")=TEXT(DATE(YEAR(TODAY()),MONTH(TODAY())-1,DAY(TODAY())),"YYYYMM")) "A1 month is one month prior to this month", "A1 month is NOT one month prior to this month")
How ever you can use date manipulation to see if this date fall in other month. Some thing like this
IF(TEXT(A1,"YYYYMM")=TEXT(DATE(YEAR(TODAY()),MONTH(TODAY())-1,DAY(TODAY())),"YYYYMM")) "A1 month is one month prior to this month", "A1 month is NOT one month prior to this month")
venkat1926
Posts
1863
Registration date
Sunday June 14, 2009
Status
Contributor
Last seen
August 7, 2021
811
Jul 18, 2010 at 07:41 AM
Jul 18, 2010 at 07:41 AM
if invoice date is 20th June 2010 and on 30th June number of days elapsed is 10 days. on July 1st it is only 11 days how can that be in the interval 31-60 days.
This argument of mine shows that I have NOT understood you. please clarify
This argument of mine shows that I have NOT understood you. please clarify
Jul 19, 2010 at 04:13 AM
Jul 19, 2010 at 04:40 AM
Jul 19, 2010 at 07:35 AM
This does not happen for other age groups only for the 0-30 days age group. Hope u can help.
Jul 19, 2010 at 08:38 AM
This is marking for you the dates where month have changed and date elaspsed betweeen todays date and the invoice date is less than 30. You just have to incorporate into your formula this logic
Jul 26, 2010 at 03:39 AM
I am using the following formula to shift the invoices to diff age groups
0-30 days
=IF(AND($L9<=30),$F9*1,"0")
where L counts number of days since the invoice was generated.
31-60 days
=IF(AND($L9<=60,$L9>30),$F9*1,"0")
etc
can u help how to amend this formula to ur solution.