Odd situation in Excel
Closed
jeffaruni
Posts
4
Registration date
Monday July 1, 2013
Status
Member
Last seen
July 3, 2013
-
Jul 1, 2013 at 06:50 AM
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022 - Jul 4, 2013 at 10:48 AM
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022 - Jul 4, 2013 at 10:48 AM
Related:
- Odd situation in Excel
- Number to words in excel - Guide
- Gif in excel - Guide
- Marksheet in excel - Guide
- How to take screenshot in excel - Guide
- Excel apk for pc - Download - Spreadsheets
6 responses
TrowaD
Posts
2921
Registration date
Sunday September 12, 2010
Status
Moderator
Last seen
December 27, 2022
555
Jul 2, 2013 at 11:26 AM
Jul 2, 2013 at 11:26 AM
Hi Jeffaruni,
So you would like to know if a number is odd or even?
If so the following functions will do so:
ISODD
or
ISEVEN
Best regards,
Trowa
So you would like to know if a number is odd or even?
If so the following functions will do so:
ISODD
or
ISEVEN
Best regards,
Trowa
jeffaruni
Posts
4
Registration date
Monday July 1, 2013
Status
Member
Last seen
July 3, 2013
Jul 2, 2013 at 11:33 AM
Jul 2, 2013 at 11:33 AM
Well it's more the dates, I'd like to know whether a date would come under the odd or evens and from then I want to be able to work out the next set date as the example so 21 would be today, 20 would be next Tuesday etc...
So odds are one week, evens are the other weeks so they're both bi-weekly
Thanks for the help
So odds are one week, evens are the other weeks so they're both bi-weekly
Thanks for the help
TrowaD
Posts
2921
Registration date
Sunday September 12, 2010
Status
Moderator
Last seen
December 27, 2022
555
Jul 2, 2013 at 11:53 AM
Jul 2, 2013 at 11:53 AM
Hi Jeff,
Could you post some sample data for better understanding?
This is what I got so far:
Could you add the dates and show/tell which column you would like to calculate using formula?
Best regards,
Trowa
Could you post some sample data for better understanding?
This is what I got so far:
Number Day Week 18 Monday 18 19 Monday 19 20 Monday 20 21 Tuesday 1 22 Tuesday 2 23 Tuesday 3
Could you add the dates and show/tell which column you would like to calculate using formula?
Best regards,
Trowa
jeffaruni
Posts
4
Registration date
Monday July 1, 2013
Status
Member
Last seen
July 3, 2013
Jul 2, 2013 at 12:10 PM
Jul 2, 2013 at 12:10 PM
Monday 1st July - Week one
Tuesday 2nd July - Week one
Etc... Until Friday
Monday 8th July - Week two
Tuesday 9th July - week two
And then entering a number would decide what day and week number it would be
E.g 21 would be Tuesday 9th July
20 would be Tuesday 2nd July
65 would be Thursday 11th July
So entering the number would give the next date along
Its more the rolling effect, I can do it for a set week but to have it self rolling so I don't have to touch it
Tuesday 2nd July - Week one
Etc... Until Friday
Monday 8th July - Week two
Tuesday 9th July - week two
And then entering a number would decide what day and week number it would be
E.g 21 would be Tuesday 9th July
20 would be Tuesday 2nd July
65 would be Thursday 11th July
So entering the number would give the next date along
Its more the rolling effect, I can do it for a set week but to have it self rolling so I don't have to touch it
Didn't find the answer you are looking for?
Ask a question
jeffaruni
Posts
4
Registration date
Monday July 1, 2013
Status
Member
Last seen
July 3, 2013
Jul 3, 2013 at 05:08 AM
Jul 3, 2013 at 05:08 AM
That was on my phone so trying to explain was always going to be fun
Example data:
1,3,5,7,9,11,13,15,17,19 - Monday 1st July - Week one
21,23,25,27,29,31,33,35,37,39 - Tuesday 2nd July - Week one
...
81,83,85,87,89,91,93,95,97,99 - Friday 5th July - Week one
0,2,4,6,8,10,12,14,16,18 - Monday 8th July - Week two
...
82,84,86,88,90,92,94,96,98 - Friday 12th July - Week two
Example data:
1,3,5,7,9,11,13,15,17,19 - Monday 1st July - Week one
21,23,25,27,29,31,33,35,37,39 - Tuesday 2nd July - Week one
...
81,83,85,87,89,91,93,95,97,99 - Friday 5th July - Week one
0,2,4,6,8,10,12,14,16,18 - Monday 8th July - Week two
...
82,84,86,88,90,92,94,96,98 - Friday 12th July - Week two
TrowaD
Posts
2921
Registration date
Sunday September 12, 2010
Status
Moderator
Last seen
December 27, 2022
555
Jul 4, 2013 at 10:48 AM
Jul 4, 2013 at 10:48 AM
Hi Jeff,
If you data isn't that much (like 200 rows) you could use nested IF statements.
I made a start for you:
=IF(AND(ISODD(A1),A1>0,A1<20),"Monday 1st July - Week one","")
Not sure why you would have problems with VLOOKUP. It doesn't look like it's much work to set up a data sheet for the numbers.
How far does the numbering go (100?)?
Best regards,
Trowa
If you data isn't that much (like 200 rows) you could use nested IF statements.
I made a start for you:
=IF(AND(ISODD(A1),A1>0,A1<20),"Monday 1st July - Week one","")
Not sure why you would have problems with VLOOKUP. It doesn't look like it's much work to set up a data sheet for the numbers.
How far does the numbering go (100?)?
Best regards,
Trowa