Calculate date

doriannjeshi

Board Regular
Joined
Apr 5, 2015
Messages
214
Office Version
  1. 2019
Platform
  1. Windows
Hello,

Is there a formula to calculate the specific sign knowing when a sign enters the date ?

periodsigndatesign
23/01/1930Aquarius08/12/1930?
16/02/1930Pisces04/05/1930?
12/03/1930Aries06/01/1930?
05/04/1930Taurus-
30/04/1930Gemini-
25/05/1930Cancer-
19/06/1930Leo-
14/07/1930Virgo-
09/08/1930Libra-
07/09/1930Scorpio-
11/10/1930Sagittarius-
22/11/1930Scorpio-
03/01/1931Sagittarius-
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
This looks promising

 
Upvote 0
Check the dates specified with the definitions that you use.

I provided a lookup with table or without the table.

T202211.xlsm
ABCD
1DateSignSign
28-Dec-1930SagittariusSagittarius
34-May-1930TaurusTaurus
46-Jan-1930CapricornCapricorn
520-Mar-1930PiscesPisces
6
722-Dec-29Capricorn
820-Jan-30Aquarius
919-Feb-30Pisces
1021-Mar-30Aries
1120-Apr-30Taurus
1221-May-30Gemini
1321-Jun-30Cancer
1423-Jul-30Leo
1523-Aug-30Virgo
1623-Sep-30Libra
1723-Oct-30Scorpio
1822-Nov-30Sagittarius
19
1d
Cell Formulas
RangeFormula
B2:B5B2=LOOKUP(A2,$C$7:$D$18)
C2:C5C2=LOOKUP(A2,{10949,"Capricorn";10978,"Aquarius";11008,"Pisces";11038,"Aries";11068,"Taurus";11099,"Gemini";11130,"Cancer";11162,"Leo";11193,"Virgo";11224,"Libra";11254,"Scorpio";11284,"Sagittarius"})
 
Upvote 0
With the approach mentioned in post #2, I named the lookup information "aL".

T202211.xlsm
AB
1DateSign
28-Dec-1930Sagittarius
34-May-1930Taurus
46-Jan-1930Capricorn
520-Mar-1930Pisces
615-Jan-2022Capricorn
720-Mar-2022Pisces
825-Sep-2022Libra
1d
Cell Formulas
RangeFormula
B2:B8B2=VLOOKUP(--(TEXT(A2,"m.dd")),aL,2,1)


To name the array of lookup information, access Formulas Name Manager
- new name aL
- value ={1.01,"Capricorn";1.2,"Aquarius";2.19,"Pisces";3.21,"Aries";4.2,"Taurus";5.21,"Gemini";6.21,"Cancer";7.23,"Leo";8.23,"Virgo";9.23,"Libra";10.23,"Scorpio";10.23,"Sagittarius";12.22,"Capricorn"}
 
Upvote 0
I am sorry I wasn't clear, this is the table for the venus sign, is not the traditional sun sign

i posted the fist 20 records of the venus in the sign dates
 
Upvote 0
I put together a 13 row table of the 12 signs plus an extra row for the the next year (what that means should become clear). I'm also using the year 1900 not only because it's easier to use.
The sample below uses SORT(RANDARRAY... to generate dates on every recalc. I included a VLOOKUP version in case you don't have Excel 2021 or MS 365. You can note what versions you're using in the About section of your profile.

It seems to be working. Let me know what you think.

Book1
ABCDEFGHIJKLMN
1
2SignStart MnthStart MonthStart DayStartDateSignStartSignDateSign
3AquariusJan12101/21/190002/15/2022Pisces01/01/1900Aquarius01/25/2022Aquarius
4PiscesFeb21902/19/190002/22/2022Pisces01/21/1900Aquarius02/04/2022Aquarius
5AriesMar32103/21/190003/31/2022Aries02/19/1900Pisces02/04/2022Aquarius
6TaurusApr42004/20/190004/24/2022Taurus03/21/1900Aries02/06/2022Aquarius
7GeminiMay52105/21/190004/26/2022Taurus04/20/1900Taurus02/08/2022Aquarius
8CancerJun62106/21/190005/14/2022Gemini05/21/1900Gemini03/19/2022Pisces
9LeoJul72307/23/190005/16/2022Gemini06/21/1900Cancer03/22/2022Aries
10VirgoAug82308/23/190005/29/2022Gemini07/23/1900Leo05/15/2022Taurus
11LibraSep92309/23/190007/13/2022Leo08/23/1900Virgo05/28/2022Gemini
12ScorpioOct102310/23/190007/26/2022Leo09/23/1900Libra06/08/2022Gemini
13SagittariusNov112211/22/190008/15/2022Virgo10/23/1900Scorpio06/17/2022Gemini
14CapricornDec122112/21/190008/15/2022Virgo11/22/1900Sagittarius06/29/2022Cancer
15AquariusJan12101/21/190108/22/2022Virgo12/21/1900Capricorn07/16/2022Cancer
1608/31/2022Virgo01/21/1901Aquarius08/13/2022Leo
1709/09/2022Libra08/13/2022Leo
1809/26/2022Libra08/17/2022Leo
1911/19/2022Sagittarius08/18/2022Leo
2011/25/2022Sagittarius08/26/2022Virgo
2112/05/2022Capricorn10/19/2022Libra
2212/05/2022Capricorn10/26/2022Scorpio
23
24Formula in H3: =XLOOKUP(DATE(1900,MONTH(G3#),DAY(G3)),Zodiac[Start],Zodiac[Sign],,1)
25
26Formula in N3: =VLOOKUP(DATE(1900,MONTH(M3),DAY(M3)),Zod2,2,TRUE)
27
Sheet3
Cell Formulas
RangeFormula
G3:G22,M3:M22G3=SORT(RANDARRAY(20,,DATEVALUE("1/1/2022"),DATEVALUE("12/31/2022"),TRUE))
H3:H22H3=XLOOKUP(DATE(1900,MONTH(G3#),DAY(G3)),Zodiac[Start],Zodiac[Sign],,1)
B3:B15B3=DATE(1900,[@[Start Month]],1)
N3:N22N3=VLOOKUP(DATE(1900,MONTH(M3),DAY(M3)),Zod2,2,TRUE)
Dynamic array formulas.
 
Upvote 0
Thank you for the solutions , which seem to be for the traditional recurring sun sign ,

Instead the Venus sign has it's own table 1000 rows of dates when it entered a specific sign

This date table needs to be used to get the sign for a specific date

I posted the first records of this table in the first post

do I need to post the whole table of 1148 rows?
 
Upvote 0
Thank you for the solutions , which seem to be for the traditional recurring sun sign ,

Instead the Venus sign has it's own table 1000 rows of dates when it entered a specific sign

This date table needs to be used to get the sign for a specific date

I posted the first records of this table in the first post

do I need to post the whole table of 1148 rows?
Not sure what those 1,000 rows are or how they relate to the date signs. At the least you'd need a table defining how Venus changes the values in the table above. I also don't understand how you went from 1,000 rows to 1,148 rows as my table has only 14 rows. Also, what about the other planets etc. Much more detail would be needed to proceed.
 
Upvote 0

to doriannjeshi

Plese explain what you require.

How is the Venus sign calculated?
or

Do you want to use the 1000 +/- rows of data in Excel?
- where is this list of dates? Is there a download available?
- do you want to use a Lookup to secure the sign from a date?
- do you want help converting this list to real dates that you can use?
-
 
Upvote 0
T202211x.xlsm
ABC
1DateSign
230-Jan-1930Aquarius
304-May-1930Gemini
406-Oct-1930Scorpio
5
6
7Jan 23, 1930 7:22 PM Venus enters Aquarius23-Jan-1930 19:22Aquarius
8Feb 16, 1930 5:11 PM Venus enters Pisces16-Feb-1930 17:11Pisces
9Mar 12, 1930 5:34 PM Venus enters Aries12-Mar-1930 17:34Aries
10Apr 5, 1930 9:57 PM Venus enters Taurus5-Apr-1930 21:57Taurus
11Apr 30, 1930 8:37 AM Venus enters Gemini30-Apr-1930 08:37Gemini
12May 25, 1930 12:36 AM Venus enters Cancer25-May-1930 00:36Cancer
13June 19, 1930 12:39 AM Venus enters Leo19-Jun-1930 00:39Leo
14July 14, 1930 12:34 PM Venus enters Virgo14-Jul-1930 12:34Virgo
15Aug 9, 1930 8:54 PM Venus enters Libra9-Aug-1930 20:54Libra
16Sep 7, 1930 12:05 AM Venus enters Scorpio7-Sep-1930 00:05Scorpio
17Oct 11, 1930 9:45 PM Venus enters Sagittarius11-Oct-1930 21:45Sagittarius
18
Venus
Cell Formulas
RangeFormula
B2:B4B2=VLOOKUP(A2,B7:C1997,2,1)
 
Upvote 0

Forum statistics

Threads
1,214,935
Messages
6,122,337
Members
449,077
Latest member
Jocksteriom

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top