Вы находитесь на странице: 1из 162

Option Explicit

Public Type HouseLord

Tag As String
Housenum As Integer
Bhava As String
Signnum As Integer
Rashi As String
Planets As Collection
num As Integer

End Type

Public FirstLord As HouseLord


Public SecondLord As HouseLord
Public ThirdLord As HouseLord
Public FourthLord As HouseLord
Public FifthLord As HouseLord
Public SixthLord As HouseLord
Public SeventhLord As HouseLord
Public EighthLord As HouseLord
Public NinthLord As HouseLord
Public TenthLord As HouseLord
Public EleventhLord As HouseLord
Public TwelfthLord As HouseLord

Public JupAspectPlanets As String


Public MyLastRow As Integer

Public Function PopulateHouseLords()

Set FirstLord.Planets = New Collection


Set SecondLord.Planets = New
Collection
Set ThirdLord.Planets = New
Collection
Set FourthLord.Planets = New
Collection
Set FifthLord.Planets = New Collection
Set SixthLord.Planets = New Collection
Set SeventhLord.Planets = New
Collection
Set EighthLord.Planets = New
Collection
Set NinthLord.Planets = New
Collection
Set TenthLord.Planets = New
Collection
Set EleventhLord.Planets = New
Collection
Set TwelfthLord.Planets = New
Collection

Select Case Asc_SB.SignNum_SB


Case 1, 8: FirstLord.Tag =
Mar_SB.Tag_SB
FirstLord.Housenum =
Mar_SB.housenum_SB
FirstLord.Bhava =
Mar_SB.Bhava_SB
FirstLord.Signnum =
Mar_SB.SignNum_SB
FirstLord.Rashi =
Mar_SB.SignName_SB
Case 2, 7: FirstLord.Tag =
Ven_SB.Tag_SB
FirstLord.Housenum =
Ven_SB.housenum_SB
FirstLord.Bhava =
Ven_SB.Bhava_SB
FirstLord.Signnum =
Ven_SB.SignNum_SB
FirstLord.Rashi =
Ven_SB.SignName_SB
Case 3, 6: FirstLord.Tag =
Mer_SB.Tag_SB
FirstLord.Housenum =
Mer_SB.housenum_SB
FirstLord.Bhava =
Mer_SB.Bhava_SB
FirstLord.Signnum =
Mer_SB.SignNum_SB
FirstLord.Rashi =
Mer_SB.SignName_SB
Case 4: FirstLord.Tag =
Mon_SB.Tag_SB
FirstLord.Housenum =
Mon_SB.housenum_SB
FirstLord.Bhava =
Mon_SB.Bhava_SB
FirstLord.Signnum =
Mon_SB.SignNum_SB
FirstLord.Rashi =
Mon_SB.SignName_SB
Case 5: FirstLord.Tag =
Sun_SB.Tag_SB
FirstLord.Housenum =
Sun_SB.housenum_SB
FirstLord.Bhava =
Sun_SB.Bhava_SB
FirstLord.Signnum =
Sun_SB.SignNum_SB
FirstLord.Rashi =
Sun_SB.SignName_SB
Case 9, 12: FirstLord.Tag =
Jup_SB.Tag_SB
FirstLord.Housenum =
Jup_SB.housenum_SB
FirstLord.Bhava =
Jup_SB.Bhava_SB
FirstLord.Signnum =
Jup_SB.SignNum_SB
FirstLord.Rashi =
Jup_SB.SignName_SB
Case 10, 11: FirstLord.Tag =
Sat_SB.Tag_SB
FirstLord.Housenum =
Sat_SB.housenum_SB
FirstLord.Bhava =
Sat_SB.Bhava_SB
FirstLord.Signnum =
Sat_SB.SignNum_SB
FirstLord.Rashi =
Sat_SB.SignName_SB

End Select

Select Case
AStroADD(Asc_SB.SignNum_SB, 2)

Case 1, 8: SecondLord.Tag =
Mar_SB.Tag_SB
SecondLord.Housenum =
Mar_SB.housenum_SB
SecondLord.Bhava =
Mar_SB.Bhava_SB
SecondLord.Signnum =
Mar_SB.SignNum_SB
SecondLord.Rashi =
Mar_SB.SignName_SB
Case 2, 7: SecondLord.Tag =
Ven_SB.Tag_SB
SecondLord.Housenum =
Ven_SB.housenum_SB
SecondLord.Bhava =
Ven_SB.Bhava_SB
SecondLord.Signnum =
Ven_SB.SignNum_SB
SecondLord.Rashi =
Ven_SB.SignName_SB
Case 3, 6: SecondLord.Tag =
Mer_SB.Tag_SB
SecondLord.Housenum =
Mer_SB.housenum_SB
SecondLord.Bhava =
Mer_SB.Bhava_SB
SecondLord.Signnum =
Mer_SB.SignNum_SB
SecondLord.Rashi =
Mer_SB.SignName_SB
Case 4: SecondLord.Tag =
Mon_SB.Tag_SB
SecondLord.Housenum =
Mon_SB.housenum_SB
SecondLord.Bhava =
Mon_SB.Bhava_SB
SecondLord.Signnum =
Mon_SB.SignNum_SB
SecondLord.Rashi =
Mon_SB.SignName_SB
Case 5: SecondLord.Tag =
Sun_SB.Tag_SB
SecondLord.Housenum =
Sun_SB.housenum_SB
SecondLord.Bhava =
Sun_SB.Bhava_SB
SecondLord.Signnum =
Sun_SB.SignNum_SB
SecondLord.Rashi =
Sun_SB.SignName_SB
Case 9, 12: SecondLord.Tag =
Jup_SB.Tag_SB
SecondLord.Housenum =
Jup_SB.housenum_SB
SecondLord.Bhava =
Jup_SB.Bhava_SB
SecondLord.Signnum =
Jup_SB.SignNum_SB
SecondLord.Rashi =
Jup_SB.SignName_SB
Case 10, 11: SecondLord.Tag =
Sat_SB.Tag_SB
SecondLord.Housenum =
Sat_SB.housenum_SB
SecondLord.Bhava =
Sat_SB.Bhava_SB
SecondLord.Signnum =
Sat_SB.SignNum_SB
SecondLord.Rashi =
Sat_SB.SignName_SB
End Select

Select Case
AStroADD(Asc_SB.SignNum_SB, 3)
Case 1, 8: ThirdLord.Tag =
Mar_SB.Tag_SB
ThirdLord.Housenum =
Mar_SB.housenum_SB
ThirdLord.Bhava =
Mar_SB.Bhava_SB
ThirdLord.Signnum =
Mar_SB.SignNum_SB
ThirdLord.Rashi =
Mar_SB.SignName_SB
Case 2, 7: ThirdLord.Tag =
Ven_SB.Tag_SB
ThirdLord.Housenum =
Ven_SB.housenum_SB
ThirdLord.Bhava =
Ven_SB.Bhava_SB
ThirdLord.Signnum =
Ven_SB.SignNum_SB
ThirdLord.Rashi =
Ven_SB.SignName_SB
Case 3, 6: ThirdLord.Tag =
Mer_SB.Tag_SB
ThirdLord.Housenum =
Mer_SB.housenum_SB
ThirdLord.Bhava =
Mer_SB.Bhava_SB
ThirdLord.Signnum =
Mer_SB.SignNum_SB
ThirdLord.Rashi =
Mer_SB.SignName_SB
Case 4: ThirdLord.Tag =
Mon_SB.Tag_SB
ThirdLord.Housenum =
Mon_SB.housenum_SB
ThirdLord.Bhava =
Mon_SB.Bhava_SB
ThirdLord.Signnum =
Mon_SB.SignNum_SB
ThirdLord.Rashi =
Mon_SB.SignName_SB
Case 5: ThirdLord.Tag =
Sun_SB.Tag_SB
ThirdLord.Housenum =
Sun_SB.housenum_SB
ThirdLord.Bhava =
Sun_SB.Bhava_SB
ThirdLord.Signnum =
Sun_SB.SignNum_SB
ThirdLord.Rashi =
Sun_SB.SignName_SB
Case 9, 12: ThirdLord.Tag =
Jup_SB.Tag_SB
ThirdLord.Housenum =
Jup_SB.housenum_SB
ThirdLord.Bhava =
Jup_SB.Bhava_SB
ThirdLord.Signnum =
Jup_SB.SignNum_SB
ThirdLord.Rashi =
Jup_SB.SignName_SB
Case 10, 11: ThirdLord.Tag =
Sat_SB.Tag_SB
ThirdLord.Housenum =
Sat_SB.housenum_SB
ThirdLord.Bhava =
Sat_SB.Bhava_SB
ThirdLord.Signnum =
Sat_SB.SignNum_SB
ThirdLord.Rashi =
Sat_SB.SignName_SB
End Select

Select Case
AStroADD(Asc_SB.SignNum_SB, 4)

Case 1, 8: FourthLord.Tag =
Mar_SB.Tag_SB
FourthLord.Housenum =
Mar_SB.housenum_SB
FourthLord.Bhava =
Mar_SB.Bhava_SB
FourthLord.Signnum =
Mar_SB.SignNum_SB
FourthLord.Rashi =
Mar_SB.SignName_SB
Case 2, 7: FourthLord.Tag =
Ven_SB.Tag_SB
FourthLord.Housenum =
Ven_SB.housenum_SB
FourthLord.Bhava =
Ven_SB.Bhava_SB
FourthLord.Signnum =
Ven_SB.SignNum_SB
FourthLord.Rashi =
Ven_SB.SignName_SB
Case 3, 6: FourthLord.Tag =
Mer_SB.Tag_SB
FourthLord.Housenum =
Mer_SB.housenum_SB
FourthLord.Bhava =
Mer_SB.Bhava_SB
FourthLord.Signnum =
Mer_SB.SignNum_SB
FourthLord.Rashi =
Mer_SB.SignName_SB
Case 4: FourthLord.Tag =
Mon_SB.Tag_SB
FourthLord.Housenum =
Mon_SB.housenum_SB
FourthLord.Bhava =
Mon_SB.Bhava_SB
FourthLord.Signnum =
Mon_SB.SignNum_SB
FourthLord.Rashi =
Mon_SB.SignName_SB
Case 5: FourthLord.Tag =
Sun_SB.Tag_SB
FourthLord.Housenum =
Sun_SB.housenum_SB
FourthLord.Bhava =
Sun_SB.Bhava_SB
FourthLord.Signnum =
Sun_SB.SignNum_SB
FourthLord.Rashi =
Sun_SB.SignName_SB
Case 9, 12: FourthLord.Tag =
Jup_SB.Tag_SB
FourthLord.Housenum =
Jup_SB.housenum_SB
FourthLord.Bhava =
Jup_SB.Bhava_SB
FourthLord.Signnum =
Jup_SB.SignNum_SB
FourthLord.Rashi =
Jup_SB.SignName_SB
Case 10, 11: FourthLord.Tag =
Sat_SB.Tag_SB
FourthLord.Housenum =
Sat_SB.housenum_SB
FourthLord.Bhava =
Sat_SB.Bhava_SB
FourthLord.Signnum =
Sat_SB.SignNum_SB
FourthLord.Rashi =
Sat_SB.SignName_SB
End Select
Select Case
AStroADD(Asc_SB.SignNum_SB, 5)

Case 1, 8: FifthLord.Tag =
Mar_SB.Tag_SB
FifthLord.Housenum =
Mar_SB.housenum_SB
FifthLord.Bhava =
Mar_SB.Bhava_SB
FifthLord.Signnum =
Mar_SB.SignNum_SB
FifthLord.Rashi =
Mar_SB.SignName_SB
Case 2, 7: FifthLord.Tag =
Ven_SB.Tag_SB
FifthLord.Housenum =
Ven_SB.housenum_SB
FifthLord.Bhava =
Ven_SB.Bhava_SB
FifthLord.Signnum =
Ven_SB.SignNum_SB
FifthLord.Rashi =
Ven_SB.SignName_SB
Case 3, 6: FifthLord.Tag =
Mer_SB.Tag_SB
FifthLord.Housenum =
Mer_SB.housenum_SB
FifthLord.Bhava =
Mer_SB.Bhava_SB
FifthLord.Signnum =
Mer_SB.SignNum_SB
FifthLord.Rashi =
Mer_SB.SignName_SB
Case 4: FifthLord.Tag =
Mon_SB.Tag_SB
FifthLord.Housenum =
Mon_SB.housenum_SB
FifthLord.Bhava =
Mon_SB.Bhava_SB
FifthLord.Signnum =
Mon_SB.SignNum_SB
FifthLord.Rashi =
Mon_SB.SignName_SB
Case 5: FifthLord.Tag =
Sun_SB.Tag_SB
FifthLord.Housenum =
Sun_SB.housenum_SB
FifthLord.Bhava =
Sun_SB.Bhava_SB
FifthLord.Signnum =
Sun_SB.SignNum_SB
FifthLord.Rashi =
Sun_SB.SignName_SB
Case 9, 12: FifthLord.Tag =
Jup_SB.Tag_SB
FifthLord.Housenum =
Jup_SB.housenum_SB
FifthLord.Bhava =
Jup_SB.Bhava_SB
FifthLord.Signnum =
Jup_SB.SignNum_SB
FifthLord.Rashi =
Jup_SB.SignName_SB
Case 10, 11: FifthLord.Tag =
Sat_SB.Tag_SB
FifthLord.Housenum =
Sat_SB.housenum_SB
FifthLord.Bhava =
Sat_SB.Bhava_SB
FifthLord.Signnum =
Sat_SB.SignNum_SB
FifthLord.Rashi =
Sat_SB.SignName_SB
End Select

Select Case
AStroADD(Asc_SB.SignNum_SB, 6)

Case 1, 8: SixthLord.Tag =
Mar_SB.Tag_SB
SixthLord.Housenum =
Mar_SB.housenum_SB
SixthLord.Bhava =
Mar_SB.Bhava_SB
SixthLord.Signnum =
Mar_SB.SignNum_SB
SixthLord.Rashi =
Mar_SB.SignName_SB
Case 2, 7: SixthLord.Tag =
Ven_SB.Tag_SB
SixthLord.Housenum =
Ven_SB.housenum_SB
SixthLord.Bhava =
Ven_SB.Bhava_SB
SixthLord.Signnum =
Ven_SB.SignNum_SB
SixthLord.Rashi =
Ven_SB.SignName_SB
Case 3, 6: SixthLord.Tag =
Mer_SB.Tag_SB
SixthLord.Housenum =
Mer_SB.housenum_SB
SixthLord.Bhava =
Mer_SB.Bhava_SB
SixthLord.Signnum =
Mer_SB.SignNum_SB
SixthLord.Rashi =
Mer_SB.SignName_SB
Case 4: SixthLord.Tag =
Mon_SB.Tag_SB
SixthLord.Housenum =
Mon_SB.housenum_SB
SixthLord.Bhava =
Mon_SB.Bhava_SB
SixthLord.Signnum =
Mon_SB.SignNum_SB
SixthLord.Rashi =
Mon_SB.SignName_SB
Case 5: SixthLord.Tag =
Sun_SB.Tag_SB
SixthLord.Housenum =
Sun_SB.housenum_SB
SixthLord.Bhava =
Sun_SB.Bhava_SB
SixthLord.Signnum =
Sun_SB.SignNum_SB
SixthLord.Rashi =
Sun_SB.SignName_SB
Case 9, 12: SixthLord.Tag =
Jup_SB.Tag_SB
SixthLord.Housenum =
Jup_SB.housenum_SB
SixthLord.Bhava =
Jup_SB.Bhava_SB
SixthLord.Signnum =
Jup_SB.SignNum_SB
SixthLord.Rashi =
Jup_SB.SignName_SB
Case 10, 11: SixthLord.Tag =
Sat_SB.Tag_SB
SixthLord.Housenum =
Sat_SB.housenum_SB
SixthLord.Bhava =
Sat_SB.Bhava_SB
SixthLord.Signnum =
Sat_SB.SignNum_SB
SixthLord.Rashi =
Sat_SB.SignName_SB
End Select

Select Case
AStroADD(Asc_SB.SignNum_SB, 7)

Case 1, 8: SeventhLord.Tag =
Mar_SB.Tag_SB
SeventhLord.Housenum =
Mar_SB.housenum_SB
SeventhLord.Bhava =
Mar_SB.Bhava_SB
SeventhLord.Signnum =
Mar_SB.SignNum_SB
SeventhLord.Rashi =
Mar_SB.SignName_SB
Case 2, 7: SeventhLord.Tag =
Ven_SB.Tag_SB
SeventhLord.Housenum =
Ven_SB.housenum_SB
SeventhLord.Bhava =
Ven_SB.Bhava_SB
SeventhLord.Signnum =
Ven_SB.SignNum_SB
SeventhLord.Rashi =
Ven_SB.SignName_SB
Case 3, 6: SeventhLord.Tag =
Mer_SB.Tag_SB
SeventhLord.Housenum =
Mer_SB.housenum_SB
SeventhLord.Bhava =
Mer_SB.Bhava_SB
SeventhLord.Signnum =
Mer_SB.SignNum_SB
SeventhLord.Rashi =
Mer_SB.SignName_SB
Case 4: SeventhLord.Tag =
Mon_SB.Tag_SB
SeventhLord.Housenum =
Mon_SB.housenum_SB
SeventhLord.Bhava =
Mon_SB.Bhava_SB
SeventhLord.Signnum =
Mon_SB.SignNum_SB
SeventhLord.Rashi =
Mon_SB.SignName_SB
Case 5: SeventhLord.Tag =
Sun_SB.Tag_SB
SeventhLord.Housenum =
Sun_SB.housenum_SB
SeventhLord.Bhava =
Sun_SB.Bhava_SB
SeventhLord.Signnum =
Sun_SB.SignNum_SB
SeventhLord.Rashi =
Sun_SB.SignName_SB
Case 9, 12: SeventhLord.Tag =
Jup_SB.Tag_SB
SeventhLord.Housenum =
Jup_SB.housenum_SB
SeventhLord.Bhava =
Jup_SB.Bhava_SB
SeventhLord.Signnum =
Jup_SB.SignNum_SB
SeventhLord.Rashi =
Jup_SB.SignName_SB
Case 10, 11: SeventhLord.Tag =
Sat_SB.Tag_SB
SeventhLord.Housenum =
Sat_SB.housenum_SB
SeventhLord.Bhava =
Sat_SB.Bhava_SB
SeventhLord.Signnum =
Sat_SB.SignNum_SB
SeventhLord.Rashi =
Sat_SB.SignName_SB
End Select

Select Case
AStroADD(Asc_SB.SignNum_SB, 8)

Case 1, 8: EighthLord.Tag =
Mar_SB.Tag_SB
EighthLord.Housenum =
Mar_SB.housenum_SB
EighthLord.Bhava =
Mar_SB.Bhava_SB
EighthLord.Signnum =
Mar_SB.SignNum_SB
EighthLord.Rashi =
Mar_SB.SignName_SB
Case 2, 7: EighthLord.Tag =
Ven_SB.Tag_SB
EighthLord.Housenum =
Ven_SB.housenum_SB
EighthLord.Bhava =
Ven_SB.Bhava_SB
EighthLord.Signnum =
Ven_SB.SignNum_SB
EighthLord.Rashi =
Ven_SB.SignName_SB
Case 3, 6: EighthLord.Tag =
Mer_SB.Tag_SB
EighthLord.Housenum =
Mer_SB.housenum_SB
EighthLord.Bhava =
Mer_SB.Bhava_SB
EighthLord.Signnum =
Mer_SB.SignNum_SB
EighthLord.Rashi =
Mer_SB.SignName_SB
Case 4: EighthLord.Tag =
Mon_SB.Tag_SB
EighthLord.Housenum =
Mon_SB.housenum_SB
EighthLord.Bhava =
Mon_SB.Bhava_SB
EighthLord.Signnum =
Mon_SB.SignNum_SB
EighthLord.Rashi =
Mon_SB.SignName_SB
Case 5: EighthLord.Tag =
Sun_SB.Tag_SB
EighthLord.Housenum =
Sun_SB.housenum_SB
EighthLord.Bhava =
Sun_SB.Bhava_SB
EighthLord.Signnum =
Sun_SB.SignNum_SB
EighthLord.Rashi =
Sun_SB.SignName_SB
Case 9, 12: EighthLord.Tag =
Jup_SB.Tag_SB
EighthLord.Housenum =
Jup_SB.housenum_SB
EighthLord.Bhava =
Jup_SB.Bhava_SB
EighthLord.Signnum =
Jup_SB.SignNum_SB
EighthLord.Rashi =
Jup_SB.SignName_SB
Case 10, 11: EighthLord.Tag =
Sat_SB.Tag_SB
EighthLord.Housenum =
Sat_SB.housenum_SB
EighthLord.Bhava =
Sat_SB.Bhava_SB
EighthLord.Signnum =
Sat_SB.SignNum_SB
EighthLord.Rashi =
Sat_SB.SignName_SB
End Select

Select Case
AStroADD(Asc_SB.SignNum_SB, 9)

Case 1, 8: NinthLord.Tag =
Mar_SB.Tag_SB
NinthLord.Housenum =
Mar_SB.housenum_SB
NinthLord.Bhava =
Mar_SB.Bhava_SB
NinthLord.Signnum =
Mar_SB.SignNum_SB
NinthLord.Rashi =
Mar_SB.SignName_SB
Case 2, 7: NinthLord.Tag =
Ven_SB.Tag_SB
NinthLord.Housenum =
Ven_SB.housenum_SB
NinthLord.Bhava =
Ven_SB.Bhava_SB
NinthLord.Signnum =
Ven_SB.SignNum_SB
NinthLord.Rashi =
Ven_SB.SignName_SB
Case 3, 6: NinthLord.Tag =
Mer_SB.Tag_SB
NinthLord.Housenum =
Mer_SB.housenum_SB
NinthLord.Bhava =
Mer_SB.Bhava_SB
NinthLord.Signnum =
Mer_SB.SignNum_SB
NinthLord.Rashi =
Mer_SB.SignName_SB
Case 4: NinthLord.Tag =
Mon_SB.Tag_SB
NinthLord.Housenum =
Mon_SB.housenum_SB
NinthLord.Bhava =
Mon_SB.Bhava_SB
NinthLord.Signnum =
Mon_SB.SignNum_SB
NinthLord.Rashi =
Mon_SB.SignName_SB
Case 5: NinthLord.Tag =
Sun_SB.Tag_SB
NinthLord.Housenum =
Sun_SB.housenum_SB
NinthLord.Bhava =
Sun_SB.Bhava_SB
NinthLord.Signnum =
Sun_SB.SignNum_SB
NinthLord.Rashi =
Sun_SB.SignName_SB
Case 9, 12: NinthLord.Tag =
Jup_SB.Tag_SB
NinthLord.Housenum =
Jup_SB.housenum_SB
NinthLord.Bhava =
Jup_SB.Bhava_SB
NinthLord.Signnum =
Jup_SB.SignNum_SB
NinthLord.Rashi =
Jup_SB.SignName_SB
Case 10, 11: NinthLord.Tag =
Sat_SB.Tag_SB
NinthLord.Housenum =
Sat_SB.housenum_SB
NinthLord.Bhava =
Sat_SB.Bhava_SB
NinthLord.Signnum =
Sat_SB.SignNum_SB
NinthLord.Rashi =
Sat_SB.SignName_SB
End Select

Select Case
AStroADD(Asc_SB.SignNum_SB, 10)

Case 1, 8: TenthLord.Tag =
Mar_SB.Tag_SB
TenthLord.Housenum =
Mar_SB.housenum_SB
TenthLord.Bhava =
Mar_SB.Bhava_SB
TenthLord.Signnum =
Mar_SB.SignNum_SB
TenthLord.Rashi =
Mar_SB.SignName_SB
Case 2, 7: TenthLord.Tag =
Ven_SB.Tag_SB
TenthLord.Housenum =
Ven_SB.housenum_SB
TenthLord.Bhava =
Ven_SB.Bhava_SB
TenthLord.Signnum =
Ven_SB.SignNum_SB
TenthLord.Rashi =
Ven_SB.SignName_SB
Case 3, 6: TenthLord.Tag =
Mer_SB.Tag_SB
TenthLord.Housenum =
Mer_SB.housenum_SB
TenthLord.Bhava =
Mer_SB.Bhava_SB
TenthLord.Signnum =
Mer_SB.SignNum_SB
TenthLord.Rashi =
Mer_SB.SignName_SB
Case 4: TenthLord.Tag =
Mon_SB.Tag_SB
TenthLord.Housenum =
Mon_SB.housenum_SB
TenthLord.Bhava =
Mon_SB.Bhava_SB
TenthLord.Signnum =
Mon_SB.SignNum_SB
TenthLord.Rashi =
Mon_SB.SignName_SB
Case 5: TenthLord.Tag =
Sun_SB.Tag_SB
TenthLord.Housenum =
Sun_SB.housenum_SB
TenthLord.Bhava =
Sun_SB.Bhava_SB
TenthLord.Signnum =
Sun_SB.SignNum_SB
TenthLord.Rashi =
Sun_SB.SignName_SB
Case 9, 12: TenthLord.Tag =
Jup_SB.Tag_SB
TenthLord.Housenum =
Jup_SB.housenum_SB
TenthLord.Bhava =
Jup_SB.Bhava_SB
TenthLord.Signnum =
Jup_SB.SignNum_SB
TenthLord.Rashi =
Jup_SB.SignName_SB
Case 10, 11: TenthLord.Tag =
Sat_SB.Tag_SB
TenthLord.Housenum =
Sat_SB.housenum_SB
TenthLord.Bhava =
Sat_SB.Bhava_SB
TenthLord.Signnum =
Sat_SB.SignNum_SB
TenthLord.Rashi =
Sat_SB.SignName_SB
End Select

Select Case
AStroADD(Asc_SB.SignNum_SB, 11)

Case 1, 8: EleventhLord.Tag =
Mar_SB.Tag_SB
EleventhLord.Housenum =
Mar_SB.housenum_SB
EleventhLord.Bhava =
Mar_SB.Bhava_SB
EleventhLord.Signnum =
Mar_SB.SignNum_SB
EleventhLord.Rashi =
Mar_SB.SignName_SB
Case 2, 7: EleventhLord.Tag =
Ven_SB.Tag_SB
EleventhLord.Housenum =
Ven_SB.housenum_SB
EleventhLord.Bhava =
Ven_SB.Bhava_SB
EleventhLord.Signnum =
Ven_SB.SignNum_SB
EleventhLord.Rashi =
Ven_SB.SignName_SB
Case 3, 6: EleventhLord.Tag =
Mer_SB.Tag_SB
EleventhLord.Housenum =
Mer_SB.housenum_SB
EleventhLord.Bhava =
Mer_SB.Bhava_SB
EleventhLord.Signnum =
Mer_SB.SignNum_SB
EleventhLord.Rashi =
Mer_SB.SignName_SB
Case 4: EleventhLord.Tag =
Mon_SB.Tag_SB
EleventhLord.Housenum =
Mon_SB.housenum_SB
EleventhLord.Bhava =
Mon_SB.Bhava_SB
EleventhLord.Signnum =
Mon_SB.SignNum_SB
EleventhLord.Rashi =
Mon_SB.SignName_SB
Case 5: EleventhLord.Tag =
Sun_SB.Tag_SB
EleventhLord.Housenum =
Sun_SB.housenum_SB
EleventhLord.Bhava =
Sun_SB.Bhava_SB
EleventhLord.Signnum =
Sun_SB.SignNum_SB
EleventhLord.Rashi =
Sun_SB.SignName_SB
Case 9, 12: EleventhLord.Tag =
Jup_SB.Tag_SB
EleventhLord.Housenum =
Jup_SB.housenum_SB
EleventhLord.Bhava =
Jup_SB.Bhava_SB
EleventhLord.Signnum =
Jup_SB.SignNum_SB
EleventhLord.Rashi =
Jup_SB.SignName_SB
Case 10, 11: EleventhLord.Tag =
Sat_SB.Tag_SB
EleventhLord.Housenum =
Sat_SB.housenum_SB
EleventhLord.Bhava =
Sat_SB.Bhava_SB
EleventhLord.Signnum =
Sat_SB.SignNum_SB
EleventhLord.Rashi =
Sat_SB.SignName_SB
End Select

Select Case
AStroADD(Asc_SB.SignNum_SB, 12)

Case 1, 8: TwelfthLord.Tag =
Mar_SB.Tag_SB
TwelfthLord.Housenum =
Mar_SB.housenum_SB
TwelfthLord.Bhava =
Mar_SB.Bhava_SB
TwelfthLord.Signnum =
Mar_SB.SignNum_SB
TwelfthLord.Rashi =
Mar_SB.SignName_SB
Case 2, 7: TwelfthLord.Tag =
Ven_SB.Tag_SB
TwelfthLord.Housenum =
Ven_SB.housenum_SB
TwelfthLord.Bhava =
Ven_SB.Bhava_SB
TwelfthLord.Signnum =
Ven_SB.SignNum_SB
TwelfthLord.Rashi =
Ven_SB.SignName_SB
Case 3, 6: TwelfthLord.Tag =
Mer_SB.Tag_SB
TwelfthLord.Housenum =
Mer_SB.housenum_SB
TwelfthLord.Bhava =
Mer_SB.Bhava_SB
TwelfthLord.Signnum =
Mer_SB.SignNum_SB
TwelfthLord.Rashi =
Mer_SB.SignName_SB
Case 4: TwelfthLord.Tag =
Mon_SB.Tag_SB
TwelfthLord.Housenum =
Mon_SB.housenum_SB
TwelfthLord.Bhava =
Mon_SB.Bhava_SB
TwelfthLord.Signnum =
Mon_SB.SignNum_SB
TwelfthLord.Rashi =
Mon_SB.SignName_SB
Case 5: TwelfthLord.Tag =
Sun_SB.Tag_SB
TwelfthLord.Housenum =
Sun_SB.housenum_SB
TwelfthLord.Bhava =
Sun_SB.Bhava_SB
TwelfthLord.Signnum =
Sun_SB.SignNum_SB
TwelfthLord.Rashi =
Sun_SB.SignName_SB
Case 9, 12: TwelfthLord.Tag =
Jup_SB.Tag_SB
TwelfthLord.Housenum =
Jup_SB.housenum_SB
TwelfthLord.Bhava =
Jup_SB.Bhava_SB
TwelfthLord.Signnum =
Jup_SB.SignNum_SB
TwelfthLord.Rashi =
Jup_SB.SignName_SB
Case 10, 11: TwelfthLord.Tag =
Sat_SB.Tag_SB
TwelfthLord.Housenum =
Sat_SB.housenum_SB
TwelfthLord.Bhava =
Sat_SB.Bhava_SB
TwelfthLord.Signnum =
Sat_SB.SignNum_SB
TwelfthLord.Rashi =
Sat_SB.SignName_SB
End Select

Select Case Sun_SB.housenum_SB


Case 1: FirstLord.Planets.Add "Sun"
Case 2: SecondLord.Planets.Add
"Sun"
Case 3: ThirdLord.Planets.Add "Sun"
Case 4: FourthLord.Planets.Add
"Sun"
Case 5: FifthLord.Planets.Add "Sun"
Case 6: SixthLord.Planets.Add "Sun"
Case 7: SeventhLord.Planets.Add
"Sun"
Case 8: EighthLord.Planets.Add
"Sun"
Case 9: NinthLord.Planets.Add
"Sun"
Case 10: TenthLord.Planets.Add
"Sun"
Case 11: EleventhLord.Planets.Add
"Sun"
Case 12: TwelfthLord.Planets.Add
"Sun"
End Select
Select Case Mon_SB.housenum_SB
Case 1: FirstLord.Planets.Add
"Moon"
Case 2: SecondLord.Planets.Add
"Moon"
Case 3: ThirdLord.Planets.Add
"Moon"
Case 4: FourthLord.Planets.Add
"Moon"
Case 5: FifthLord.Planets.Add
"Moon"
Case 6: SixthLord.Planets.Add
"Moon"
Case 7: SeventhLord.Planets.Add
"Moon"
Case 8: EighthLord.Planets.Add
"Moon"
Case 9: NinthLord.Planets.Add
"Moon"
Case 10: TenthLord.Planets.Add
"Moon"
Case 11: EleventhLord.Planets.Add
"Moon"
Case 12: TwelfthLord.Planets.Add
"Moon"
End Select

Select Case Mar_SB.housenum_SB


Case 1: FirstLord.Planets.Add
"Mars"
Case 2: SecondLord.Planets.Add
"Mars"
Case 3: ThirdLord.Planets.Add
"Mars"
Case 4: FourthLord.Planets.Add
"Mars"
Case 5: FifthLord.Planets.Add
"Mars"
Case 6: SixthLord.Planets.Add
"Mars"
Case 7: SeventhLord.Planets.Add
"Mars"
Case 8: EighthLord.Planets.Add
"Mars"
Case 9: NinthLord.Planets.Add
"Mars"
Case 10: TenthLord.Planets.Add
"Mars"
Case 11: EleventhLord.Planets.Add
"Mars"
Case 12: TwelfthLord.Planets.Add
"Mars"
End Select

Select Case Mer_SB.housenum_SB


Case 1: FirstLord.Planets.Add
"Mercury"
Case 2: SecondLord.Planets.Add
"Mercury"
Case 3: ThirdLord.Planets.Add
"Mercury"
Case 4: FourthLord.Planets.Add
"Mercury"
Case 5: FifthLord.Planets.Add
"Mercury"
Case 6: SixthLord.Planets.Add
"Mercury"
Case 7: SeventhLord.Planets.Add
"Mercury"
Case 8: EighthLord.Planets.Add
"Mercury"
Case 9: NinthLord.Planets.Add
"Mercury"
Case 10: TenthLord.Planets.Add
"Mercury"
Case 11: EleventhLord.Planets.Add
"Mercury"
Case 12: TwelfthLord.Planets.Add
"Mercury"
End Select

Select Case Jup_SB.housenum_SB


Case 1: FirstLord.Planets.Add
"Jupiter"
Case 2: SecondLord.Planets.Add
"Jupiter"
Case 3: ThirdLord.Planets.Add
"Jupiter"
Case 4: FourthLord.Planets.Add
"Jupiter"
Case 5: FifthLord.Planets.Add
"Jupiter"
Case 6: SixthLord.Planets.Add
"Jupiter"
Case 7: SeventhLord.Planets.Add
"Jupiter"
Case 8: EighthLord.Planets.Add
"Jupiter"
Case 9: NinthLord.Planets.Add
"Jupiter"
Case 10: TenthLord.Planets.Add
"Jupiter"
Case 11: EleventhLord.Planets.Add
"Jupiter"
Case 12: TwelfthLord.Planets.Add
"Jupiter"
End Select

Select Case Ven_SB.housenum_SB


Case 1: FirstLord.Planets.Add
"Venus"
Case 2: SecondLord.Planets.Add
"Venus"
Case 3: ThirdLord.Planets.Add
"Venus"
Case 4: FourthLord.Planets.Add
"Venus"
Case 5: FifthLord.Planets.Add
"Venus"
Case 6: SixthLord.Planets.Add
"Venus"
Case 7: SeventhLord.Planets.Add
"Venus"
Case 8: EighthLord.Planets.Add
"Venus"
Case 9: NinthLord.Planets.Add
"Venus"
Case 10: TenthLord.Planets.Add
"Venus"
Case 11: EleventhLord.Planets.Add
"Venus"
Case 12: TwelfthLord.Planets.Add
"Venus"
End Select

Select Case Sat_SB.housenum_SB


Case 1: FirstLord.Planets.Add
"Saturn"
Case 2: SecondLord.Planets.Add
"Saturn"
Case 3: ThirdLord.Planets.Add
"Saturn"
Case 4: FourthLord.Planets.Add
"Saturn"
Case 5: FifthLord.Planets.Add
"Saturn"
Case 6: SixthLord.Planets.Add
"Saturn"
Case 7: SeventhLord.Planets.Add
"Saturn"
Case 8: EighthLord.Planets.Add
"Saturn"
Case 9: NinthLord.Planets.Add
"Saturn"
Case 10: TenthLord.Planets.Add
"Saturn"
Case 11: EleventhLord.Planets.Add
"Saturn"
Case 12: TwelfthLord.Planets.Add
"Saturn"
End Select

FirstLord.num = 1
SecondLord.num = 2
ThirdLord.num = 3
FourthLord.num = 4
FifthLord.num = 5
SixthLord.num = 6
SeventhLord.num = 7
EighthLord.num = 8
NinthLord.num = 9
TenthLord.num = 10
EleventhLord.num = 11
TwelfthLord.num = 12
End Function

Public Function
InitialCalculation4YogaDosha()

Sheet9.Activate
Range("A2:D200").Clear
MyLastRow = 1 +
Sheet9.Cells(Sheet9.Rows.Count,
"A").End(xlUp).row

'MsgBox MyLastRow

End Function
Public Function
PanchaMahaPurushaYoga()

Dim Remark As String

'Checking For RuchakaYoga (Mars


PanchaMahaPurushaYoga)
GetPlanetStatus4prediction "Mars",
Mar_SB.SignNum_SB
If ((PlanetStatus = "EXHALTED") Or
(PlanetStatus = "OWN_HOUSE")) Then
'Own Sign or exhalted sign
If ((Mar_SB.housenum_SB Mod 3) =
1) Then 'Present in Kendra
Sheet9.Range("A" & MyLastRow)
= "Ruchaka PanchaMahapurusha Yoga"
If (PlanetStatus = "EXHALTED")
Then
Sheet9.Range("B" &
MyLastRow) = "Mars Is in Kendra and is
Exhalted"
ElseIf (PlanetStatus =
"OWN_HOUSE") Then
Sheet9.Range("B" &
MyLastRow) = "Mars Is in Kendra and is
in its Own Sign"
End If
Sheet9.Range("C" & MyLastRow)
= "The native will be wealthy,very
famous,intelligent, full of enthusiasm
and energy. A person born with Ruchaka
Yoga will have graceful appearance, very
attractive physique and impressive
personality and he will be long lived."
Remark = "For this
PanchamahaPurusha to be working The
Lagnesh and Mars must be strong and
also should be good(IshtaPhala >
KashtaPhala) Else the results will be
compromised or not visible."

Remark = Remark & " In your


chart Mars has shadbala:" &
CStr(Mar_SB.ShadBala) & " and minimum
value for strenth is 300. also the
IshtaPhala is " & Mar_SB.IshtaPhala & "
and Kashta Phala is " &
Mar_SB.KashtaPhala & "."

If (Mar_SB.SignNum_SB =
Sat_SB.SignNum_SB) Then
Remark = Remark & Chr(10) &
"ChandraNadi Says If Mars and Saturn
are conjunct in the chart Then Ruchak
Yoga gets destroyed. So as per
chandranadi, Ruchak
Pamchamahapurusha Yoga wont give its
results in your life."
End If

Sheet9.Range("D" & MyLastRow)


= Remark

MyLastRow = MyLastRow + 1
End If
End If

'Checking For BhadraYoga (Mercury


PanchaMahaPurushaYoga)
GetPlanetStatus4prediction "Mercury",
Mer_SB.SignNum_SB
If ((PlanetStatus = "EXHALTED") Or
(PlanetStatus = "OWN_HOUSE")) Then
'Own Sign or exhalted sign
If ((Mer_SB.housenum_SB Mod 3) =
1) Then 'Present in Kendra

Sheet9.Range("A" & MyLastRow)


= "Bhadra PanchaMahapurusha Yoga"
If (PlanetStatus = "EXHALTED")
Then
Sheet9.Range("B" &
MyLastRow) = "Mercury Is in Kendra and
is Exhalted"
ElseIf (PlanetStatus =
"OWN_HOUSE") Then
Sheet9.Range("B" &
MyLastRow) = "Mercury Is in Kendra and
is in its Own Sign"
End If
Sheet9.Range("C" & MyLastRow)
= "Mercury represents wisdom,
intelligence, education, intellect, speech
and business. The native will be tall,
attractive, learned, intelligent,
intellectual, wealthy, good orator,sharp-
witted, helpful, majestic and very famous
with a successful career, at an early age.
He/she will be of lustful and self
indulgent nature and live a luxurious and
long life."
Remark = "For this
PanchamahaPurusha to be working The
Lagnesh and Mercury must be strong and
also should be good(IshtaPhala >
KashtaPhala) Else the results will be
compromised or not visible."

Remark = Remark & " In your


chart Mercury has shadbala:" &
CStr(Mer_SB.ShadBala) & " and minimum
value for strenth is 420. also the
IshtaPhala is " & Mer_SB.IshtaPhala & "
and Kashta Phala is " &
Mer_SB.KashtaPhala & "."

If (Mer_SB.SignNum_SB =
Jup_SB.SignNum_SB) Then
Remark = Remark & Chr(10) &
"ChandraNadi Says If Mercury and Jupiter
are conjunct in the chart Then Bhadra
Yoga gets destroyed. So as per
chandranadi, Bhadra
Pamchamahapurusha Yoga wont give its
results in your life."
End If

Sheet9.Range("D" & MyLastRow)


= Remark

MyLastRow = MyLastRow + 1
End If
End If

'Checking For HamsaYoga (Jupiter


PanchaMahaPurushaYoga)
GetPlanetStatus4prediction "Jupiter",
Jup_SB.SignNum_SB
If ((PlanetStatus = "EXHALTED") Or
(PlanetStatus = "OWN_HOUSE")) Then
'Own Sign or exhalted sign
If ((Jup_SB.housenum_SB Mod 3) =
1) Then 'Present in Kendra

Sheet9.Range("A" & MyLastRow)


= "Hamsa PanchaMahapurusha Yoga"
If (PlanetStatus = "EXHALTED")
Then
Sheet9.Range("B" &
MyLastRow) = "Jupiter Is in Kendra and is
Exhalted"
ElseIf (PlanetStatus =
"OWN_HOUSE") Then
Sheet9.Range("B" &
MyLastRow) = "Jupiter Is in Kendra and is
in its Own Sign"
End If
Sheet9.Range("C" & MyLastRow)
= "Jupiter represents intellect, brilliance,
education,discipline and spirituality. The
person will have a sharp and elevated
nose, good features with tall, handsome
and attractive personality, he/she will be
fair,very graceful, intelligent,
intellectual, famous, wealthy, religious,
studious, popular, charitable and gentle
in nature. The native will have trouble
with teeth, sometimes may be broken at
an early age, if afflicted by malefic
planets. A woman having Hamsa Yoga
with non-afflicted and strong Jupiter, will
be lucky for her husband or married life,
as Jupiter represents husband in a
womans birth chart. The native will
enjoy a long life. "
Remark = "For this
PanchamahaPurusha to be working The
Lagnesh and Jupiter must be strong and
also should be good(IshtaPhala >
KashtaPhala) Else the results will be
compromised or not visible."

Remark = Remark & " In your


chart Jupiter has shadbala:" &
CStr(Jup_SB.ShadBala) & " and minimum
value for strenth is 390. also the
IshtaPhala is " & Jup_SB.IshtaPhala & "
and Kashta Phala is " &
Jup_SB.KashtaPhala & "."
If (Mon_SB.SignNum_SB =
Mar_SB.SignNum_SB) Then
Remark = Remark & Chr(10) &
"ChandraNadi Says If Mars and Moon are
conjunct in the chart Then Hamsa Yoga
gets destroyed. So as per your
chandranadi, Hamsa
Pamchamahapurusha Yoga wont give its
results in your life."
End If

Sheet9.Range("D" & MyLastRow)


= Remark

MyLastRow = MyLastRow + 1
End If
End If

'Checking For MalavyaYoga (Venus


PanchaMahaPurushaYoga)
GetPlanetStatus4prediction "Venus",
Ven_SB.SignNum_SB
If ((PlanetStatus = "EXHALTED") Or
(PlanetStatus = "OWN_HOUSE")) Then
'Own Sign or exhalted sign
If ((Ven_SB.housenum_SB Mod 3) =
1) Then 'Present in Kendra

Sheet9.Range("A" & MyLastRow)


= "Maalavya PanchaMahapurusha Yoga"
If (PlanetStatus = "EXHALTED")
Then
Sheet9.Range("B" &
MyLastRow) = "Venus Is in Kendra and is
Exhalted"
ElseIf (PlanetStatus =
"OWN_HOUSE") Then
Sheet9.Range("B" &
MyLastRow) = "Venus Is in Kendra and is
in its Own Sign"
End If
Sheet9.Range("C" & MyLastRow)
= "Venus represents luxury, comfort and
marital bliss. The native will have
beautiful face with large eyes and very
attractive personality. He/she will be
famous, fortunate, own many vehicles
and live a prosperous, luxurious and
successful life. The native will be in
contact with many women, in his life but
this does not mean his character is
questionable. If this combination (yoga)
is afflicted by malefic planets, the native
will have bad or unpredictable character.
A native having Malavya Yoga, with
strong Venus in his/her birth chart will
get a very loving and supporting spouse,
as Venus represents marital bliss, in a
persons birth chart."
Remark = "For this
PanchamahaPurusha to be working The
Lagnesh and Venus must be strong and
also should be good(IshtaPhala >
KashtaPhala) Else the results will be
compromised or not visible."

Remark = Remark & " In your


chart Venus has shadbala:" &
CStr(Ven_SB.ShadBala) & " and minimum
value for strenth is 330. also the
IshtaPhala is " & Ven_SB.IshtaPhala & "
and Kashta Phala is " &
Ven_SB.KashtaPhala & "."

If (Jup_SB.SignNum_SB =
Sat_SB.SignNum_SB) Then
Remark = Remark & Chr(10) &
"ChandraNadi Says If Jupiter and Saturn
are conjunct in the chart Then Maalavya
Yoga gets destroyed. So as per your
chandranadi, Maalavya
Pamchamahapurusha Yoga wont give its
results in your life."
End If

Sheet9.Range("D" & MyLastRow)


= Remark

MyLastRow = MyLastRow + 1
End If
End If

'Checking For SasaYoga (Saturn


PanchaMahaPurushaYoga)
GetPlanetStatus4prediction "Saturn",
Sat_SB.SignNum_SB
If ((PlanetStatus = "EXHALTED") Or
(PlanetStatus = "OWN_HOUSE")) Then
'Own Sign or exhalted sign
If ((Sat_SB.housenum_SB Mod 3) =
1) Then 'Present in Kendra

Sheet9.Range("A" & MyLastRow)


= "Sasa PanchaMahapurusha Yoga"
If (PlanetStatus = "EXHALTED")
Then
Sheet9.Range("B" &
MyLastRow) = "Saturn Is in Kendra and is
Exhalted"
ElseIf (PlanetStatus =
"OWN_HOUSE") Then
Sheet9.Range("B" &
MyLastRow) = "Saturn Is in Kendra and is
in its Own Sign"
End If
Sheet9.Range("C" & MyLastRow)
= "Saturn represents sorrow, obstacles
and adversity. The native will rise to a
great height but the progress will be
very slow and the life will not be without
troubles. A person having Shasha Yoga
with strong Saturn in his/her birth chart,
being a deep thinker would positively
implement the ideas to bring them to
reality and successfully start a new
venture. The native will be tall, good
looking with attractive physique and will
have many servants, factories and lead a
prosperous and wealthy life. If this
combination is afflicted by malefic
planets, the person will be a bad
character (may be even a robber). He will
not hesitate in stealing or enjoying
others' wealth."
Remark = "For this
PanchamahaPurusha to be working The
Lagnesh and Saturn must be strong and
also should be good(IshtaPhala >
KashtaPhala) Else the results will be
compromised or not visible."

Remark = Remark & " In your


chart Saturn has shadbala:" &
CStr(Sat_SB.ShadBala) & " and minimum
value for strenth is 300. also the
IshtaPhala is " & Sat_SB.IshtaPhala & "
and Kashta Phala is " &
Sat_SB.KashtaPhala & "."
If (Ven_SB.SignNum_SB =
Mer_SB.SignNum_SB) Then
Remark = Remark & Chr(10) &
"ChandraNadi Says If Mercury and Venus
are conjunct in the chart Then Sasa Yoga
gets destroyed. So as per your
chandranadi, Sasa Pamchamahapurusha
Yoga wont give its results in your life."
End If

Sheet9.Range("D" & MyLastRow)


= Remark

MyLastRow = MyLastRow + 1
End If
End If

End Function

Public Function ParivarthanaYoga()

Dim Planet As String


Dim ParivarthanayogaGroups As String

ParivarthanayogaGroups = ""

If (Sun_SB.DispositorSignNum = 5)
And (Sun_SB.SignNum_SB <>
Sun_SB.DispositorSignNum) Then
Planet =
GetDispositorPlanet(Sun_SB.SignNum_SB
)
If ((InStr(ParivarthanayogaGroups,
"Sun") = 0) And
(InStr(ParivarthanayogaGroups, Planet)
= 0)) Then

ParivarthanayogaGroups =
ParivarthanayogaGroups & "Sun;" &
Planet & ";"
Sheet9.Range("A" & MyLastRow)
= "Parivarthana Yoga"
Sheet9.Range("B" & MyLastRow)
= "Sun-" & Planet & " Parivarthana. Sun
is in " & Sun_SB.SignNum_SB & "th sign
ruled by " & Planet & " and " & Planet & "
is in 5th sign ruled by Sun. forming
parivarthana Yoga between them."
Sheet9.Range("C" & MyLastRow)
= "Since the planets have exchanged the
signs the connection between them is
amplified. Scripturs hae not mentioned
results for each pf parivarthana yoga
seperately."
Sheet9.Range("D" & MyLastRow)
= "If the parivarthanaYoga happens
between Friends then its a good yoga
and reaps good results. But if
parivarthana has happened between
enemies then it reaps bad results."
MyLastRow = MyLastRow + 1

End If
End If

If (Mon_SB.DispositorSignNum = 4)
And (Mon_SB.SignNum_SB <>
Mon_SB.DispositorSignNum) Then
Planet =
GetDispositorPlanet(Mon_SB.SignNum_S
B)
If ((InStr(ParivarthanayogaGroups,
"Moon") = 0) And
(InStr(ParivarthanayogaGroups, Planet)
= 0)) Then

ParivarthanayogaGroups =
ParivarthanayogaGroups & "Moon;" &
Planet & ";"
Sheet9.Range("A" & MyLastRow)
= "Parivarthana Yoga"
Sheet9.Range("B" & MyLastRow)
= "Moon-" & Planet & " Parivarthana.
Moon is in " & Mon_SB.SignNum_SB & "th
sign ruled by " & Planet & " and " &
Planet & " is in 4th sign ruled by Moon.
forming parivarthana Yoga between
them."
Sheet9.Range("C" & MyLastRow)
= "Since the planets have exchanged the
signs the connection between them is
amplified. Scripturs hae not mentioned
results for each pf parivarthana yoga
seperately."
Sheet9.Range("D" & MyLastRow)
= "If the parivarthanaYoga happens
between Friends then its a good yoga
and reaps good results. But if
parivarthana has happened between
enemies then it reaps bad results."
MyLastRow = MyLastRow + 1

End If
End If

If ((Mar_SB.DispositorSignNum = 1) Or
(Mar_SB.DispositorSignNum = 8)) And
(Mar_SB.SignNum_SB <>
Mar_SB.DispositorSignNum) Then
Planet =
GetDispositorPlanet(Mar_SB.SignNum_SB
)
If ((InStr(ParivarthanayogaGroups,
"Mars") = 0) And
(InStr(ParivarthanayogaGroups, Planet)
= 0)) Then
ParivarthanayogaGroups =
ParivarthanayogaGroups & "Mars;" &
Planet & ";"
Sheet9.Range("A" & MyLastRow)
= "Parivarthana Yoga"
Sheet9.Range("B" & MyLastRow)
= "Mars-" & Planet & " Parivarthana.
Mars is in " & Mar_SB.SignNum_SB & "th
sign ruled by " & Planet & " and " &
Planet & " is in " &
Mar_SB.DispositorSignNum & "th sign
ruled by Mars. forming parivarthana
Yoga between them."
Sheet9.Range("C" & MyLastRow)
= "Since the planets have exchanged the
signs the connection between them is
amplified. Scripturs hae not mentioned
results for each pf parivarthana yoga
seperately."
Sheet9.Range("D" & MyLastRow)
= "If the parivarthanaYoga happens
between Friends then its a good yoga
and reaps good results. But if
parivarthana has happened between
enemies then it reaps bad results."
MyLastRow = MyLastRow + 1

End If
End If
If ((Mer_SB.DispositorSignNum = 3) Or
(Mer_SB.DispositorSignNum = 6)) And
(Mer_SB.SignNum_SB <>
Mer_SB.DispositorSignNum) Then
Planet =
GetDispositorPlanet(Mer_SB.SignNum_SB
)
If ((InStr(ParivarthanayogaGroups,
"Mercury") = 0) And
(InStr(ParivarthanayogaGroups, Planet)
= 0)) Then

ParivarthanayogaGroups =
ParivarthanayogaGroups & "Mercury;" &
Planet & ";"
Sheet9.Range("A" & MyLastRow)
= "Parivarthana Yoga"
Sheet9.Range("B" & MyLastRow)
= "Mercury-" & Planet & " Parivarthana.
Mercury is in " & Mer_SB.SignNum_SB &
"th sign ruled by " & Planet & " and " &
Planet & " is in " &
Mer_SB.DispositorSignNum & "th sign
ruled by Mercury. forming parivarthana
Yoga between them."
Sheet9.Range("C" & MyLastRow)
= "Since the planets have exchanged the
signs the connection between them is
amplified. Scripturs hae not mentioned
results for each pf parivarthana yoga
seperately."
Sheet9.Range("D" & MyLastRow)
= "If the parivarthanaYoga happens
between Friends then its a good yoga
and reaps good results. But if
parivarthana has happened between
enemies then it reaps bad results."
MyLastRow = MyLastRow + 1

End If
End If

If ((Jup_SB.DispositorSignNum = 9) Or
(Jup_SB.DispositorSignNum = 12)) And
(Jup_SB.SignNum_SB <>
Jup_SB.DispositorSignNum) Then
Planet =
GetDispositorPlanet(Jup_SB.SignNum_SB)
If ((InStr(ParivarthanayogaGroups,
"Jupiter") = 0) And
(InStr(ParivarthanayogaGroups, Planet)
= 0)) Then

ParivarthanayogaGroups =
ParivarthanayogaGroups & "Jupiter;" &
Planet & ";"
Sheet9.Range("A" & MyLastRow)
= "Parivarthana Yoga"
Sheet9.Range("B" & MyLastRow)
= "Jupiter-" & Planet & " Parivarthana.
Jupiter is in " & Jup_SB.SignNum_SB & "th
sign ruled by " & Planet & " and " &
Planet & " is in " &
Jup_SB.DispositorSignNum & "th sign
ruled by Jupiter. forming parivarthana
Yoga between them."
Sheet9.Range("C" & MyLastRow)
= "Since the planets have exchanged the
signs the connection between them is
amplified. Scripturs hae not mentioned
results for each pf parivarthana yoga
seperately."
Sheet9.Range("D" & MyLastRow)
= "If the parivarthanaYoga happens
between Friends then its a good yoga
and reaps good results. But if
parivarthana has happened between
enemies then it reaps bad results."
MyLastRow = MyLastRow + 1

End If
End If

If ((Ven_SB.DispositorSignNum = 2) Or
(Ven_SB.DispositorSignNum = 7)) And
(Ven_SB.SignNum_SB <>
Ven_SB.DispositorSignNum) Then
Planet =
GetDispositorPlanet(Ven_SB.SignNum_SB
)
If ((InStr(ParivarthanayogaGroups,
"Venus") = 0) And
(InStr(ParivarthanayogaGroups, Planet)
= 0)) Then

ParivarthanayogaGroups =
ParivarthanayogaGroups & "Venus;" &
Planet & ";"
Sheet9.Range("A" & MyLastRow)
= "Parivarthana Yoga"
Sheet9.Range("B" & MyLastRow)
= "Venus-" & Planet & " Parivarthana.
Venus is in " & Ven_SB.SignNum_SB & "th
sign ruled by " & Planet & " and " &
Planet & " is in " &
Ven_SB.DispositorSignNum & "th sign
ruled by Venus. forming parivarthana
Yoga between them."
Sheet9.Range("C" & MyLastRow)
= "Since the planets have exchanged the
signs the connection between them is
amplified. Scripturs hae not mentioned
results for each pf parivarthana yoga
seperately."
Sheet9.Range("D" & MyLastRow)
= "If the parivarthanaYoga happens
between Friends then its a good yoga
and reaps good results. But if
parivarthana has happened between
enemies then it reaps bad results."
MyLastRow = MyLastRow + 1

End If
End If

End Function

Public Function GajaKesariYoga()

Dim gap4mAsc As Integer


Dim gap4mMon As Integer
Dim Remark As String
Dim JupDeg As Integer
Dim SunDeg As Integer
Dim Gap As Integer
Dim YogaStatus As Boolean

'Distance of Jupiter from Moon


gap4mMon =
FindPlanets_Distance(Mon_SB.housenum
_SB, Jup_SB.housenum_SB)

'Distance of jupiter from Ascndant


gap4mAsc = Jup_SB.housenum_SB

If (((gap4mMon Mod 3) = 1) Or
((gap4mAsc Mod 3) = 1)) Then
Sheet9.Range("A" & MyLastRow) =
"GajaKesari Yoga"
YogaStatus = True
If (gap4mMon Mod 3) = 1 Then
Sheet9.Range("B" & MyLastRow)
= "Jupiter is in Kendra with respect to
Moon hence forming a Gajakesari Yoga
with Moon."
End If

If (gap4mAsc Mod 3) = 1 Then


Sheet9.Range("B" & MyLastRow)
= Sheet9.Range("B" & MyLastRow) &
"Jupiter is in Kendra with respect to
Ascendant hence forming a Gajakesari
Yoga with Ascendant."
End If

Sheet9.Range("C" & MyLastRow) =


"The person will be splendorous,
wealthy, wise, intelligent, very virtuous,
and liked by the king and government."

'Populating Remarks
Remark = ""

'Checking If Gajakesari is cancelled


by combust Jupiter
JupDeg = ((Jup_SB.SignNum_SB - 1)
* 30) + Jup_SB.Degrees_SB
SunDeg = ((Sun_SB.SignNum_SB - 1)
* 30) + Sun_SB.Degrees_SB
Gap = Abs(JupDeg - SunDeg)
If Gap > 180 Then
Gap = 360 - Gap
End If
If (Gap <= 11) Then 'Gap between
sun and jupiter is 11 degrees then Jupiter
is combust making Gajakesari Yoga
invalid
Remark = Remark & "Jupiter is "
& Gap & "degrees from Sun and hence
combust by being soo close. Due to this
the GajaKesari Yoga is Destroyed. "
YogaStatus = False
End If

'Checking if Jupiter is debilitated


destroying GajaKesari Yoga
If (Jup_SB.SignNum_SB = 10) Then
'Debilitated Jupiter
Remark = Remark & "Jupiter is
debilitated and hence GajaKesari Yoga is
destroyed and does not give its good
results."
YogaStatus = False
End If
'Checking for placement in Inimical
sign. Jupiter's enemies are Mercury and
Venus
If ((Jup_SB.SignNum_SB = 2) Or
(Jup_SB.SignNum_SB = 7) Or
(Jup_SB.SignNum_SB = 3) Or
(Jup_SB.SignNum_SB = 6)) Then
'Debilitated Jupiter
Remark = Remark & "Jupiter is in
his Inimical sign and hence GajaKesari
Yoga is destroyed and does not give its
good results."
YogaStatus = False
End If

'Checking for Conjunction of Malefic


planets
If (Jup_SB.housenum_SB =
Sun_SB.housenum_SB) Then
Remark = Remark & "Jupiter is
conjunct with Sun which is malefic planet
hence cancelling GajaKesari Yoga."
YogaStatus = False
End If

If (Jup_SB.housenum_SB =
Mon_SB.housenum_SB) And
(Mon_SB.NaturalStatus = "MALEFIC")
Then
Remark = Remark & "Jupiter is
conjunct with Waning Moon which is
malefic planet hence cancelling
GajaKesari Yoga."
YogaStatus = False
End If

If (Jup_SB.housenum_SB =
Mar_SB.housenum_SB) Then
Remark = Remark & "Jupiter is
conjunct with Mars which is malefic
planet hence cancelling GajaKesari
Yoga."
YogaStatus = False
End If

If (Jup_SB.housenum_SB =
Mer_SB.housenum_SB) And
(Mer_SB.NaturalStatus = "MALEFIC")
Then
Remark = Remark & "Jupiter is
conjunct with Bad associated Mercury
which is malefic planet in this chart,
hence cancelling GajaKesari Yoga."
YogaStatus = False
End If

If (Jup_SB.housenum_SB =
Sat_SB.housenum_SB) Then
Remark = Remark & "Jupiter is
conjunct with Saturn which is malefic
planet hence cancelling GajaKesari
Yoga."
YogaStatus = False
End If

If (Jup_SB.SignNum_SB =
CInt(Left(UserForm2.ComboBox8.Text,
2))) Then
Remark = Remark & "Jupiter is
conjunct with Rahu which is malefic
planet hence cancelling GajaKesari
Yoga."
YogaStatus = False
End If

If (Jup_SB.SignNum_SB =
CInt(Left(UserForm2.ComboBox9.Text,
2))) Then
Remark = Remark & "Jupiter is
conjunct with Ketu which is malefic
planet hence cancelling GajaKesari
Yoga."
YogaStatus = False
End If

'Checking Aspects from Malefic


planets
If (InStr(JupAspectPlanets, "Sun:")
<> 0) Then
Remark = Remark & "Jupiter is
Aspected by Sun which is malefic planet
hence cancelling GajaKesari Yoga."
YogaStatus = False
End If

If (InStr(JupAspectPlanets, "Moon:")
<> 0) And (Mon_SB.NaturalStatus =
"MALEFIC") Then
Remark = Remark & "Jupiter is
Aspected by Waning Moon which is
malefic planet hence cancelling
GajaKesari Yoga."
YogaStatus = False
End If

If (InStr(JupAspectPlanets, "Mars:")
<> 0) Then
Remark = Remark & "Jupiter is
Aspected by Mars which is malefic planet
hence cancelling GajaKesari Yoga."
YogaStatus = False
End If

If (InStr(JupAspectPlanets,
"Mercury:") <> 0) And
(Mer_SB.NaturalStatus = "MALEFIC")
Then
Remark = Remark & "Jupiter is
Aspected by bad associated Mercury
which is malefic planet in this chart,
hence cancelling GajaKesari Yoga."
YogaStatus = False
End If

If (InStr(JupAspectPlanets,
"Saturn:") <> 0) Then
Remark = Remark & "Jupiter is
Aspected by Saturn which is malefic
planet hence cancelling GajaKesari
Yoga."
YogaStatus = False
End If

If (YogaStatus = True) Then

'Checking conjunction with


benefic planets
If (Jup_SB.housenum_SB =
Ven_SB.housenum_SB) Then
Remark = Remark & "Jupiter is
conjunct with Venus which is a benefic
planet and hence strengthens GajaKesari
Yoga."
YogaStatus = True
End If
If (Jup_SB.housenum_SB =
Mon_SB.housenum_SB) And
(Mon_SB.NaturalStatus = "BENEFIC")
Then
Remark = Remark & "Jupiter is
conjunct with Waxing Moon which is a
benefic planet and hence strengthens
GajaKesari Yoga."
YogaStatus = True
End If

If (Jup_SB.housenum_SB =
Mer_SB.housenum_SB) And
(Mer_SB.NaturalStatus = "BENEFIC")
Then
Remark = Remark & "Jupiter is
conjunct with Mercury which is a benefic
planet in this chart and hence
strengthens GajaKesari Yoga."
YogaStatus = True
End If

'Checking Aspects from Benefic


planets
If (InStr(JupAspectPlanets,
"Moon:") <> 0) And
(Mon_SB.NaturalStatus = "BENEFIC")
Then
Remark = Remark & "Jupiter is
Aspected by Waxing Moon which is
benefic planet, hence strengthens
GajaKesari Yoga."
YogaStatus = True
End If

If (InStr(JupAspectPlanets,
"Mercury:") <> 0) And
(Mer_SB.NaturalStatus = "BENEFIC")
Then
Remark = Remark & "Jupiter is
Aspected by Mercury which is benefic
planet in this chart, hence strengthens
GajaKesari Yoga."
YogaStatus = True
End If

If (InStr(JupAspectPlanets,
"Venus:") <> 0) Then
Remark = Remark & "Jupiter is
Aspected by Venus which is benefic
planet, hence strengthens GajaKesari
Yoga."
YogaStatus = True
End If

End If

Sheet9.Range("D" & MyLastRow) =


Remark
MyLastRow = MyLastRow + 1
End If

End Function

Public Function VipareethaRajyoga()

'Checking Vipareetha Rajyoga wrt 6th


house
Select Case
AStroADD(Asc_SB.SignNum_SB, 6)

Case 1, 8: Select Case


Mar_SB.housenum_SB
Case 6: Sheet9.Range("A" &
MyLastRow) = "Harsha Vipreeta Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "6th house lord Mars is
sitting in 6th house itself."
Sheet9.Range("C" &
MyLastRow) = "As a result of presence of
this yoga person achieve victory on his
or her enemies. The person becomes one
of the influential personality in the
society, and is blessed with good friends,
family, life partner and children. He is
wealthy, has name fame, is endowed
with luxuries. He is blessed with good
fortune."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 8: Sheet9.Range("A" &
MyLastRow) = "Harsha Vipreeta Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "6th house lord Mars is
sitting in 8th house itself."
Sheet9.Range("C" &
MyLastRow) = "As a result of presence of
this yoga person achieve victory on his
or her enemies. The person becomes one
of the influential personality in the
society, and is blessed with good friends,
family, life partner and children. He is
wealthy, has name fame, is endowed
with luxuries. He is blessed with good
fortune."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 12: Sheet9.Range("A" &
MyLastRow) = "Harsha Vipreeta Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "6th house lord Mars is
sitting in 12th house itself."
Sheet9.Range("C" &
MyLastRow) = "As a result of presence of
this yoga person achieve victory on his
or her enemies. The person becomes one
of the influential personality in the
society, and is blessed with good friends,
family, life partner and children. He is
wealthy, has name fame, is endowed
with luxuries. He is blessed with good
fortune."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
End Select

Case 2, 7: Select Case


Ven_SB.housenum_SB
Case 6: Sheet9.Range("A" &
MyLastRow) = "Harsha Vipreeta Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "6th house lord Venus is
sitting in 6th house itself."
Sheet9.Range("C" &
MyLastRow) = "As a result of presence of
this yoga person achieve victory on his
or her enemies. The person becomes one
of the influential personality in the
society, and is blessed with good friends,
family, life partner and children. He is
wealthy, has name fame, is endowed
with luxuries. He is blessed with good
fortune."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 8: Sheet9.Range("A" &
MyLastRow) = "Harsha Vipreeta Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "6th house lord Venus is
sitting in 8th house itself."
Sheet9.Range("C" &
MyLastRow) = "As a result of presence of
this yoga person achieve victory on his
or her enemies. The person becomes one
of the influential personality in the
society, and is blessed with good friends,
family, life partner and children. He is
wealthy, has name fame, is endowed
with luxuries. He is blessed with good
fortune."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 12: Sheet9.Range("A" &
MyLastRow) = "Harsha Vipreeta Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "6th house lord Venus is
sitting in 12th house itself."
Sheet9.Range("C" &
MyLastRow) = "As a result of presence of
this yoga person achieve victory on his
or her enemies. The person becomes one
of the influential personality in the
society, and is blessed with good friends,
family, life partner and children. He is
wealthy, has name fame, is endowed
with luxuries. He is blessed with good
fortune."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
End Select

Case 3, 6: Select Case


Mer_SB.housenum_SB
Case 6: Sheet9.Range("A" &
MyLastRow) = "Harsha Vipreeta Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "6th house lord Mercury is
sitting in 6th house itself."
Sheet9.Range("C" &
MyLastRow) = "As a result of presence of
this yoga person achieve victory on his
or her enemies. The person becomes one
of the influential personality in the
society, and is blessed with good friends,
family, life partner and children. He is
wealthy, has name fame, is endowed
with luxuries. He is blessed with good
fortune."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 8: Sheet9.Range("A" &
MyLastRow) = "Harsha Vipreeta Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "6th house lord Mercury is
sitting in 8th house itself."
Sheet9.Range("C" &
MyLastRow) = "As a result of presence of
this yoga person achieve victory on his
or her enemies. The person becomes one
of the influential personality in the
society, and is blessed with good friends,
family, life partner and children. He is
wealthy, has name fame, is endowed
with luxuries. He is blessed with good
fortune."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 12: Sheet9.Range("A" &
MyLastRow) = "Harsha Vipreeta Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "6th house lord Mercury is
sitting in 12th house itself."
Sheet9.Range("C" &
MyLastRow) = "As a result of presence of
this yoga person achieve victory on his
or her enemies. The person becomes one
of the influential personality in the
society, and is blessed with good friends,
family, life partner and children. He is
wealthy, has name fame, is endowed
with luxuries. He is blessed with good
fortune."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
End Select
Case 4: Select Case
Mon_SB.housenum_SB
Case 6: Sheet9.Range("A" &
MyLastRow) = "Harsha Vipreeta Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "6th house lord Moon is
sitting in 6th house itself."
Sheet9.Range("C" &
MyLastRow) = "As a result of presence of
this yoga person achieve victory on his
or her enemies. The person becomes one
of the influential personality in the
society, and is blessed with good friends,
family, life partner and children. He is
wealthy, has name fame, is endowed
with luxuries. He is blessed with good
fortune."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 8: Sheet9.Range("A" &
MyLastRow) = "Harsha Vipreeta Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "6th house lord Moon is
sitting in 8th house itself."
Sheet9.Range("C" &
MyLastRow) = "As a result of presence of
this yoga person achieve victory on his
or her enemies. The person becomes one
of the influential personality in the
society, and is blessed with good friends,
family, life partner and children. He is
wealthy, has name fame, is endowed
with luxuries. He is blessed with good
fortune."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 12: Sheet9.Range("A" &
MyLastRow) = "Harsha Vipreeta Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "6th house lord Moon is
sitting in 12th house itself."
Sheet9.Range("C" &
MyLastRow) = "As a result of presence of
this yoga person achieve victory on his
or her enemies. The person becomes one
of the influential personality in the
society, and is blessed with good friends,
family, life partner and children. He is
wealthy, has name fame, is endowed
with luxuries. He is blessed with good
fortune."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
End Select

Case 5: Select Case


Sun_SB.housenum_SB
Case 6: Sheet9.Range("A" &
MyLastRow) = "Harsha Vipreeta Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "6th house lord Sun is
sitting in 6th house itself."
Sheet9.Range("C" &
MyLastRow) = "As a result of presence of
this yoga person achieve victory on his
or her enemies. The person becomes one
of the influential personality in the
society, and is blessed with good friends,
family, life partner and children. He is
wealthy, has name fame, is endowed
with luxuries. He is blessed with good
fortune."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 8: Sheet9.Range("A" &
MyLastRow) = "Harsha Vipreeta Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "6th house lord Sun is
sitting in 8th house itself."
Sheet9.Range("C" &
MyLastRow) = "As a result of presence of
this yoga person achieve victory on his
or her enemies. The person becomes one
of the influential personality in the
society, and is blessed with good friends,
family, life partner and children. He is
wealthy, has name fame, is endowed
with luxuries. He is blessed with good
fortune."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 12: Sheet9.Range("A" &
MyLastRow) = "Harsha Vipreeta Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "6th house lord Sun is
sitting in 12th house itself."
Sheet9.Range("C" &
MyLastRow) = "As a result of presence of
this yoga person achieve victory on his
or her enemies. The person becomes one
of the influential personality in the
society, and is blessed with good friends,
family, life partner and children. He is
wealthy, has name fame, is endowed
with luxuries. He is blessed with good
fortune."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
End Select

Case 9, 12: Select Case


Jup_SB.housenum_SB
Case 6: Sheet9.Range("A" &
MyLastRow) = "Harsha Vipreeta Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "6th house lord Jupiter is
sitting in 6th house itself."
Sheet9.Range("C" &
MyLastRow) = "As a result of presence of
this yoga person achieve victory on his
or her enemies. The person becomes one
of the influential personality in the
society, and is blessed with good friends,
family, life partner and children. He is
wealthy, has name fame, is endowed
with luxuries. He is blessed with good
fortune."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 8: Sheet9.Range("A" &
MyLastRow) = "Harsha Vipreeta Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "6th house lord Jupiter is
sitting in 8th house itself."
Sheet9.Range("C" &
MyLastRow) = "As a result of presence of
this yoga person achieve victory on his
or her enemies. The person becomes one
of the influential personality in the
society, and is blessed with good friends,
family, life partner and children. He is
wealthy, has name fame, is endowed
with luxuries. He is blessed with good
fortune."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 12: Sheet9.Range("A" &
MyLastRow) = "Harsha Vipreeta Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "6th house lord Jupiter is
sitting in 12th house itself."
Sheet9.Range("C" &
MyLastRow) = "As a result of presence of
this yoga person achieve victory on his
or her enemies. The person becomes one
of the influential personality in the
society, and is blessed with good friends,
family, life partner and children. He is
wealthy, has name fame, is endowed
with luxuries. He is blessed with good
fortune."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
End Select

Case 10, 11: Select Case


Sat_SB.housenum_SB
Case 6: Sheet9.Range("A" &
MyLastRow) = "Harsha Vipreeta Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "6th house lord Saturn is
sitting in 6th house itself."
Sheet9.Range("C" &
MyLastRow) = "As a result of presence of
this yoga person achieve victory on his
or her enemies. The person becomes one
of the influential personality in the
society, and is blessed with good friends,
family, life partner and children. He is
wealthy, has name fame, is endowed
with luxuries. He is blessed with good
fortune."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 8: Sheet9.Range("A" &
MyLastRow) = "Harsha Vipreeta Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "6th house lord Saturn is
sitting in 8th house itself."
Sheet9.Range("C" &
MyLastRow) = "As a result of presence of
this yoga person achieve victory on his
or her enemies. The person becomes one
of the influential personality in the
society, and is blessed with good friends,
family, life partner and children. He is
wealthy, has name fame, is endowed
with luxuries. He is blessed with good
fortune."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 12: Sheet9.Range("A" &
MyLastRow) = "Harsha Vipreeta Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "6th house lord Saturn is
sitting in 12th house itself."
Sheet9.Range("C" &
MyLastRow) = "As a result of presence of
this yoga person achieve victory on his
or her enemies. The person becomes one
of the influential personality in the
society, and is blessed with good friends,
family, life partner and children. He is
wealthy, has name fame, is endowed
with luxuries. He is blessed with good
fortune."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
End Select

End Select

'Checking Vipareeta Raja Yoga wrt 8th


house
Select Case
AStroADD(Asc_SB.SignNum_SB, 8)

Case 1, 8: Select Case


Mar_SB.housenum_SB
Case 6: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Sarala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "8th house lord Mars is
sitting in 6th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person has the
ability to fight adversity with great
strength and is not afraid of conflicts.
The person is a scholar, wealthy, famous.
Being idealist and firm on principles,
they are efficient decision makers."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 8: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Sarala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "8th house lord Mars is
sitting in 8th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person has the
ability to fight adversity with great
strength and is not afraid of conflicts.
The person is a scholar, wealthy, famous.
Being idealist and firm on principles,
they are efficient decision makers."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 12: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Sarala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "8th house lord Mars is
sitting in 12th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person has the
ability to fight adversity with great
strength and is not afraid of conflicts.
The person is a scholar, wealthy, famous.
Being idealist and firm on principles,
they are efficient decision makers."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
End Select

Case 2, 7: Select Case


Ven_SB.housenum_SB
Case 6: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Sarala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "8th house lord Venus is
sitting in 6th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person has the
ability to fight adversity with great
strength and is not afraid of conflicts.
The person is a scholar, wealthy, famous.
Being idealist and firm on principles,
they are efficient decision makers."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 8: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Sarala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "8th house lord Venus is
sitting in 8th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person has the
ability to fight adversity with great
strength and is not afraid of conflicts.
The person is a scholar, wealthy, famous.
Being idealist and firm on principles,
they are efficient decision makers."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 12: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Sarala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "8th house lord Venus is
sitting in 12th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person has the
ability to fight adversity with great
strength and is not afraid of conflicts.
The person is a scholar, wealthy, famous.
Being idealist and firm on principles,
they are efficient decision makers."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
End Select

Case 3, 6: Select Case


Mer_SB.housenum_SB
Case 6: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Sarala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "8th house lord Mercury is
sitting in 6th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person has the
ability to fight adversity with great
strength and is not afraid of conflicts.
The person is a scholar, wealthy, famous.
Being idealist and firm on principles,
they are efficient decision makers."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 8: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Sarala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "8th house lord Mercury is
sitting in 8th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person has the
ability to fight adversity with great
strength and is not afraid of conflicts.
The person is a scholar, wealthy, famous.
Being idealist and firm on principles,
they are efficient decision makers."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 12: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Sarala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "8th house lord Mercury is
sitting in 12th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person has the
ability to fight adversity with great
strength and is not afraid of conflicts.
The person is a scholar, wealthy, famous.
Being idealist and firm on principles,
they are efficient decision makers."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
End Select

Case 4: Select Case


Mon_SB.housenum_SB
Case 6: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Sarala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "8th house lord Moon is
sitting in 6th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person has the
ability to fight adversity with great
strength and is not afraid of conflicts.
The person is a scholar, wealthy, famous.
Being idealist and firm on principles,
they are efficient decision makers."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 8: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Sarala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "8th house lord Moon is
sitting in 8th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person has the
ability to fight adversity with great
strength and is not afraid of conflicts.
The person is a scholar, wealthy, famous.
Being idealist and firm on principles,
they are efficient decision makers."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 12: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Sarala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "8th house lord Moon is
sitting in 12th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person has the
ability to fight adversity with great
strength and is not afraid of conflicts.
The person is a scholar, wealthy, famous.
Being idealist and firm on principles,
they are efficient decision makers."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
End Select

Case 5: Select Case


Sun_SB.housenum_SB
Case 6: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Sarala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "8th house lord Sun is
sitting in 6th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person has the
ability to fight adversity with great
strength and is not afraid of conflicts.
The person is a scholar, wealthy, famous.
Being idealist and firm on principles,
they are efficient decision makers."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 8: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Sarala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "8th house lord Sun is
sitting in 8th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person has the
ability to fight adversity with great
strength and is not afraid of conflicts.
The person is a scholar, wealthy, famous.
Being idealist and firm on principles,
they are efficient decision makers."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 12: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Sarala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "8th house lord Sun is
sitting in 12th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person has the
ability to fight adversity with great
strength and is not afraid of conflicts.
The person is a scholar, wealthy, famous.
Being idealist and firm on principles,
they are efficient decision makers."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
End Select

Case 9, 12: Select Case


Jup_SB.housenum_SB
Case 6: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Sarala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "8th house lord Jupiter is
sitting in 6th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person has the
ability to fight adversity with great
strength and is not afraid of conflicts.
The person is a scholar, wealthy, famous.
Being idealist and firm on principles,
they are efficient decision makers."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 8: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Sarala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "8th house lord Jupiter is
sitting in 8th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person has the
ability to fight adversity with great
strength and is not afraid of conflicts.
The person is a scholar, wealthy, famous.
Being idealist and firm on principles,
they are efficient decision makers."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 12: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Sarala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "8th house lord Jupiter is
sitting in 12th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person has the
ability to fight adversity with great
strength and is not afraid of conflicts.
The person is a scholar, wealthy, famous.
Being idealist and firm on principles,
they are efficient decision makers."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
End Select

Case 10, 11: Select Case


Sat_SB.housenum_SB
Case 6: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Sarala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "8th house lord Saturn is
sitting in 6th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person has the
ability to fight adversity with great
strength and is not afraid of conflicts.
The person is a scholar, wealthy, famous.
Being idealist and firm on principles,
they are efficient decision makers."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 8: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Sarala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "8th house lord Saturn is
sitting in 8th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person has the
ability to fight adversity with great
strength and is not afraid of conflicts.
The person is a scholar, wealthy, famous.
Being idealist and firm on principles,
they are efficient decision makers."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 12: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Sarala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "8th house lord Saturn is
sitting in 12th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person has the
ability to fight adversity with great
strength and is not afraid of conflicts.
The person is a scholar, wealthy, famous.
Being idealist and firm on principles,
they are efficient decision makers."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
End Select

End Select

Select Case
AStroADD(Asc_SB.SignNum_SB, 12)

Case 1, 8: Select Case


Mar_SB.housenum_SB
Case 6: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Vimala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "12th house lord Mars is
sitting in 6th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person is of
independent spirit. He tries to always be
happy and is good at accumulating
money. He lives a just and pious life and
makes an appreciable contribution
towards the society. He is known for
honorable profession, good behavior and
conduct."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 8: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Vimala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "12th house lord Mars is
sitting in 8th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person is of
independent spirit. He tries to always be
happy and is good at accumulating
money. He lives a just and pious life and
makes an appreciable contribution
towards the society. He is known for
honorable profession, good behavior and
conduct."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 12: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Vimala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "12th house lord Mars is
sitting in 12th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person is of
independent spirit. He tries to always be
happy and is good at accumulating
money. He lives a just and pious life and
makes an appreciable contribution
towards the society. He is known for
honorable profession, good behavior and
conduct."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
End Select
Case 2, 7: Select Case
Ven_SB.housenum_SB
Case 6: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Vimala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "12th house lord Venus is
sitting in 6th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person is of
independent spirit. He tries to always be
happy and is good at accumulating
money. He lives a just and pious life and
makes an appreciable contribution
towards the society. He is known for
honorable profession, good behavior and
conduct."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 8: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Vimala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "12th house lord Venus is
sitting in 8th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person is of
independent spirit. He tries to always be
happy and is good at accumulating
money. He lives a just and pious life and
makes an appreciable contribution
towards the society. He is known for
honorable profession, good behavior and
conduct."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 12: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Vimala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "12th house lord Venus is
sitting in 12th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person is of
independent spirit. He tries to always be
happy and is good at accumulating
money. He lives a just and pious life and
makes an appreciable contribution
towards the society. He is known for
honorable profession, good behavior and
conduct."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
End Select

Case 3, 6: Select Case


Mer_SB.housenum_SB
Case 6: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Vimala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "12th house lord Mercury
is sitting in 6th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person is of
independent spirit. He tries to always be
happy and is good at accumulating
money. He lives a just and pious life and
makes an appreciable contribution
towards the society. He is known for
honorable profession, good behavior and
conduct."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 8: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Vimala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "12th house lord Mercury
is sitting in 8th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person is of
independent spirit. He tries to always be
happy and is good at accumulating
money. He lives a just and pious life and
makes an appreciable contribution
towards the society. He is known for
honorable profession, good behavior and
conduct."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 12: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Vimala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "12th house lord Mercury
is sitting in 12th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person is of
independent spirit. He tries to always be
happy and is good at accumulating
money. He lives a just and pious life and
makes an appreciable contribution
towards the society. He is known for
honorable profession, good behavior and
conduct."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
End Select
Case 4: Select Case
Mon_SB.housenum_SB
Case 6: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Vimala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "12th house lord Moon is
sitting in 6th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person is of
independent spirit. He tries to always be
happy and is good at accumulating
money. He lives a just and pious life and
makes an appreciable contribution
towards the society. He is known for
honorable profession, good behavior and
conduct."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 8: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Vimala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "12th house lord Moon is
sitting in 8th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person is of
independent spirit. He tries to always be
happy and is good at accumulating
money. He lives a just and pious life and
makes an appreciable contribution
towards the society. He is known for
honorable profession, good behavior and
conduct."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 12: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Vimala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "12th house lord Moon is
sitting in 12th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person is of
independent spirit. He tries to always be
happy and is good at accumulating
money. He lives a just and pious life and
makes an appreciable contribution
towards the society. He is known for
honorable profession, good behavior and
conduct."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
End Select

Case 5: Select Case


Sun_SB.housenum_SB
Case 6: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Vimala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "12th house lord Sun is
sitting in 6th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person is of
independent spirit. He tries to always be
happy and is good at accumulating
money. He lives a just and pious life and
makes an appreciable contribution
towards the society. He is known for
honorable profession, good behavior and
conduct."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 8: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Vimala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "12th house lord Sun is
sitting in 8th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person is of
independent spirit. He tries to always be
happy and is good at accumulating
money. He lives a just and pious life and
makes an appreciable contribution
towards the society. He is known for
honorable profession, good behavior and
conduct."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 12: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Vimala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "12th house lord Sun is
sitting in 12th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person is of
independent spirit. He tries to always be
happy and is good at accumulating
money. He lives a just and pious life and
makes an appreciable contribution
towards the society. He is known for
honorable profession, good behavior and
conduct."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
End Select
Case 9, 12: Select Case
Jup_SB.housenum_SB
Case 6: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Vimala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "12th house lord Jupiter is
sitting in 6th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person is of
independent spirit. He tries to always be
happy and is good at accumulating
money. He lives a just and pious life and
makes an appreciable contribution
towards the society. He is known for
honorable profession, good behavior and
conduct."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 8: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Vimala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "12th house lord Jupiter is
sitting in 8th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person is of
independent spirit. He tries to always be
happy and is good at accumulating
money. He lives a just and pious life and
makes an appreciable contribution
towards the society. He is known for
honorable profession, good behavior and
conduct."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 12: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Vimala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "12th house lord Jupiter is
sitting in 12th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person is of
independent spirit. He tries to always be
happy and is good at accumulating
money. He lives a just and pious life and
makes an appreciable contribution
towards the society. He is known for
honorable profession, good behavior and
conduct."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
End Select

Case 10, 11: Select Case


Sat_SB.housenum_SB
Case 6: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Vimala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "12th house lord Saturn is
sitting in 6th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person is of
independent spirit. He tries to always be
happy and is good at accumulating
money. He lives a just and pious life and
makes an appreciable contribution
towards the society. He is known for
honorable profession, good behavior and
conduct."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 8: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Vimala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "12th house lord Saturn is
sitting in 8th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person is of
independent spirit. He tries to always be
happy and is good at accumulating
money. He lives a just and pious life and
makes an appreciable contribution
towards the society. He is known for
honorable profession, good behavior and
conduct."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
Case 12: Sheet9.Range("A" &
MyLastRow) = "Vipreeta Vimala Raja
Yoga"
Sheet9.Range("B" &
MyLastRow) = "12th house lord Saturn is
sitting in 12th house itself."
Sheet9.Range("C" &
MyLastRow) = "The person is of
independent spirit. He tries to always be
happy and is good at accumulating
money. He lives a just and pious life and
makes an appreciable contribution
towards the society. He is known for
honorable profession, good behavior and
conduct."
Sheet9.Range("D" &
MyLastRow) = "Parashara doesnt
recognise vipareetha rajayoga and says
its arishta yoga but gives bad results.
But this yoga is recognised in Uttaa
Kalamrit by Sage Kalidasa."
MyLastRow =
MyLastRow + 1
End Select

End Select
End Function

Public Function RajaYogas()

Dim NinthTenthLink As Boolean

NinthTenthLink = False
'Rajayoga forms When Kendra Lords form
any kind of relation with Trikona lords in
the chart

'############First let us see if


Kendra Lords and Trine Lords are
same#################

'First Lord and fifth lord are same


If (FirstLord.Tag = FifthLord.Tag) Then
Sheet9.Range("A" & MyLastRow) =
"Kendra Trikona Raja Yoga"
Sheet9.Range("B" & MyLastRow) =
"Lagnesh:" & FirstLord.Tag & " is same as
Panchamesh:" & FifthLord.Tag & "."
Sheet9.Range("C" & MyLastRow) =
"The result of such a rajyoga may be
varied specifically as per the nature of
planets and the houses involved but the
general result is the increase in the
overall status of the individual and
making him luckier, more efficient and
thus powerful. As the name suggests,
Rajyoga means the combination for
kingly traits, which may mean
anything ranging from an overall respect
in the society to having political power."
Sheet9.Range("D" & MyLastRow) =
"Note: If any other planet is in
conjunction with bad status, or the
planet making this yoga is debilitated or
placed in a bad house, then This Rajyoga
will not reap any good results."
MyLastRow = MyLastRow + 1
End If

'First Lord and ninth lord are same


If (FirstLord.Tag = NinthLord.Tag) Then
Sheet9.Range("A" & MyLastRow) =
"Kendra Trikona Raja Yoga"
Sheet9.Range("B" & MyLastRow) =
"Lagnesh:" & FirstLord.Tag & " is same as
Navamesh:" & NinthLord.Tag & "."
Sheet9.Range("C" & MyLastRow) =
"The result of such a rajyoga may be
varied specifically as per the nature of
planets and the houses involved but the
general result is the increase in the
overall status of the individual and
making him luckier, more efficient and
thus powerful. As the name suggests,
Rajyoga means the combination for
kingly traits, which may mean
anything ranging from an overall respect
in the society to having political power."
Sheet9.Range("D" & MyLastRow) =
"Note: If any other planet is in
conjunction with bad status, or the
planet making this yoga is debilitated or
placed in a bad house, then This Rajyoga
will not reap any good results."
MyLastRow = MyLastRow + 1
End If

'Fourth Lord and fifth lord are same


If (FourthLord.Tag = FifthLord.Tag) Then
Sheet9.Range("A" & MyLastRow) =
"Kendra Trikona Raja Yoga"
Sheet9.Range("B" & MyLastRow) =
"Chaturtesh:" & FourthLord.Tag & " is
same as panchamesh:" & FifthLord.Tag &
"."
Sheet9.Range("C" & MyLastRow) =
"The result of such a rajyoga may be
varied specifically as per the nature of
planets and the houses involved but the
general result is the increase in the
overall status of the individual and
making him luckier, more efficient and
thus powerful. As the name suggests,
Rajyoga means the combination for
kingly traits, which may mean
anything ranging from an overall respect
in the society to having political power."
Sheet9.Range("D" & MyLastRow) =
"Note: If any other planet is in
conjunction with bad status, or the
planet making this yoga is debilitated or
placed in a bad house, then This Rajyoga
will not reap any good results."
MyLastRow = MyLastRow + 1
End If

'Fourth Lord and ninth lord are same


If (FourthLord.Tag = NinthLord.Tag) Then
Sheet9.Range("A" & MyLastRow) =
"Kendra Trikona Raja Yoga"
Sheet9.Range("B" & MyLastRow) =
"Chaturtesh:" & FourthLord.Tag & " is
same as Navamesh:" & NinthLord.Tag &
"."
Sheet9.Range("C" & MyLastRow) =
"The result of such a rajyoga may be
varied specifically as per the nature of
planets and the houses involved but the
general result is the increase in the
overall status of the individual and
making him luckier, more efficient and
thus powerful. As the name suggests,
Rajyoga means the combination for
kingly traits, which may mean
anything ranging from an overall respect
in the society to having political power."
Sheet9.Range("D" & MyLastRow) =
"Note: If any other planet is in
conjunction with bad status, or the
planet making this yoga is debilitated or
placed in a bad house, then This Rajyoga
will not reap any good results."
MyLastRow = MyLastRow + 1
End If

'Seventh Lord and fifth lord are same


If (SeventhLord.Tag = FifthLord.Tag)
Then
Sheet9.Range("A" & MyLastRow) =
"Kendra Trikona Raja Yoga"
Sheet9.Range("B" & MyLastRow) =
"Sapthamesh:" & SeventhLord.Tag & " is
same as panchamesh:" & FifthLord.Tag &
"."
Sheet9.Range("C" & MyLastRow) =
"The result of such a rajyoga may be
varied specifically as per the nature of
planets and the houses involved but the
general result is the increase in the
overall status of the individual and
making him luckier, more efficient and
thus powerful. As the name suggests,
Rajyoga means the combination for
kingly traits, which may mean
anything ranging from an overall respect
in the society to having political power."
Sheet9.Range("D" & MyLastRow) =
"Note: If any other planet is in
conjunction with bad status, or the
planet making this yoga is debilitated or
placed in a bad house, then This Rajyoga
will not reap any good results."
MyLastRow = MyLastRow + 1
End If

'Seventh Lord and ninth lord are same


If (SeventhLord.Tag = NinthLord.Tag)
Then
Sheet9.Range("A" & MyLastRow) =
"Kendra Trikona Raja Yoga"
Sheet9.Range("B" & MyLastRow) =
"Sapthamesh:" & SeventhLord.Tag & " is
same as Navamesh:" & NinthLord.Tag &
"."
Sheet9.Range("C" & MyLastRow) =
"The result of such a rajyoga may be
varied specifically as per the nature of
planets and the houses involved but the
general result is the increase in the
overall status of the individual and
making him luckier, more efficient and
thus powerful. As the name suggests,
Rajyoga means the combination for
kingly traits, which may mean
anything ranging from an overall respect
in the society to having political power."
Sheet9.Range("D" & MyLastRow) =
"Note: If any other planet is in
conjunction with bad status, or the
planet making this yoga is debilitated or
placed in a bad house, then This Rajyoga
will not reap any good results."
MyLastRow = MyLastRow + 1
End If

'Tenth Lord and fifth lord are same


If (TenthLord.Tag = FifthLord.Tag) Then
Sheet9.Range("A" & MyLastRow) =
"Kendra Trikona Raja Yoga"
Sheet9.Range("B" & MyLastRow) =
"Dashamesh:" & TenthLord.Tag & " is
same as panchamesh:" & FifthLord.Tag &
"."
Sheet9.Range("C" & MyLastRow) =
"The result of such a rajyoga may be
varied specifically as per the nature of
planets and the houses involved but the
general result is the increase in the
overall status of the individual and
making him luckier, more efficient and
thus powerful. As the name suggests,
Rajyoga means the combination for
kingly traits, which may mean
anything ranging from an overall respect
in the society to having political power."
Sheet9.Range("D" & MyLastRow) =
"Note: If any other planet is in
conjunction with bad status, or the
planet making this yoga is debilitated or
placed in a bad house, then This Rajyoga
will not reap any good results."
MyLastRow = MyLastRow + 1
End If

'Tenth Lord and ninth lord are same


If (TenthLord.Tag = NinthLord.Tag) Then
Sheet9.Range("A" & MyLastRow) =
"Kendra Trikona Raja Yoga"
Sheet9.Range("B" & MyLastRow) =
"Dashamesh:" & TenthLord.Tag & " is
same as Navamesh:" & NinthLord.Tag &
"."
Sheet9.Range("C" & MyLastRow) =
"The result of such a rajyoga may be
varied specifically as per the nature of
planets and the houses involved but the
general result is the increase in the
overall status of the individual and
making him luckier, more efficient and
thus powerful. As the name suggests,
Rajyoga means the combination for
kingly traits, which may mean
anything ranging from an overall respect
in the society to having political power."
Sheet9.Range("D" & MyLastRow) =
"Note: If any other planet is in
conjunction with bad status, or the
planet making this yoga is debilitated or
placed in a bad house, then This Rajyoga
will not reap any good results."
MyLastRow = MyLastRow + 1
NinthTenthLink = True
End If

'###########################
############################
############################
#######

'############First let us see if


Kendra Lords and Trine Lords are
conjunct#################

'First Lord and fifth lord conjunction


If (FirstLord.Signnum =
FifthLord.Signnum) And (FirstLord.Tag
<> FifthLord.Tag) Then
Sheet9.Range("A" & MyLastRow) =
"Kendra Trikona Raja Yoga"
Sheet9.Range("B" & MyLastRow) =
"Lagnesh:" & FirstLord.Tag & " is
conjunct with Panchamesh:" &
FifthLord.Tag & "."
Sheet9.Range("C" & MyLastRow) =
"The result of such a rajyoga may be
varied specifically as per the nature of
planets and the houses involved but the
general result is the increase in the
overall status of the individual and
making him luckier, more efficient and
thus powerful. As the name suggests,
Rajyoga means the combination for
kingly traits, which may mean
anything ranging from an overall respect
in the society to having political power."
Sheet9.Range("D" & MyLastRow) =
"Note: If any other planet is in
conjunction with bad status, or any
planet making this yoga is debilitated or
conjunction happens in a bad house,
then This Rajyoga will not reap any good
results."
MyLastRow = MyLastRow + 1
End If

'First Lord and ninth lord conjunction


If (FirstLord.Signnum =
NinthLord.Signnum) And (FirstLord.Tag
<> NinthLord.Tag) Then
Sheet9.Range("A" & MyLastRow) =
"Kendra Trikona Raja Yoga"
Sheet9.Range("B" & MyLastRow) =
"Lagnesh:" & FirstLord.Tag & " is
conjunct with Navamesh:" &
NinthLord.Tag & "."
Sheet9.Range("C" & MyLastRow) =
"The result of such a rajyoga may be
varied specifically as per the nature of
planets and the houses involved but the
general result is the increase in the
overall status of the individual and
making him luckier, more efficient and
thus powerful. As the name suggests,
Rajyoga means the combination for
kingly traits, which may mean
anything ranging from an overall respect
in the society to having political power."
Sheet9.Range("D" & MyLastRow) =
"Note: If any other planet is in
conjunction with bad status, or any
planet making this yoga is debilitated or
conjunction happens in a bad house,
then This Rajyoga will not reap any good
results."
MyLastRow = MyLastRow + 1
End If

'Fourth Lord and fifth lord conjunction


If (FourthLord.Signnum =
FifthLord.Signnum) And (FourthLord.Tag
<> FifthLord.Tag) Then
Sheet9.Range("A" & MyLastRow) =
"Kendra Trikona Raja Yoga"
Sheet9.Range("B" & MyLastRow) =
"Chaturtesh:" & FourthLord.Tag & " is
conjunct with panchamesh:" &
FifthLord.Tag & "."
Sheet9.Range("C" & MyLastRow) =
"The result of such a rajyoga may be
varied specifically as per the nature of
planets and the houses involved but the
general result is the increase in the
overall status of the individual and
making him luckier, more efficient and
thus powerful. As the name suggests,
Rajyoga means the combination for
kingly traits, which may mean
anything ranging from an overall respect
in the society to having political power."
Sheet9.Range("D" & MyLastRow) =
"Note: If any other planet is in
conjunction with bad status, or any
planet making this yoga is debilitated or
conjunction happens in a bad house,
then This Rajyoga will not reap any good
results."
MyLastRow = MyLastRow + 1
End If
'Fourth Lord and ninth lord conjunction
If (FourthLord.Signnum =
NinthLord.Signnum) And (FourthLord.Tag
<> NinthLord.Tag) Then
Sheet9.Range("A" & MyLastRow) =
"Kendra Trikona Raja Yoga"
Sheet9.Range("B" & MyLastRow) =
"Chaturtesh:" & FourthLord.Tag & " is
conjunct with Navamesh:" &
NinthLord.Tag & "."
Sheet9.Range("C" & MyLastRow) =
"The result of such a rajyoga may be
varied specifically as per the nature of
planets and the houses involved but the
general result is the increase in the
overall status of the individual and
making him luckier, more efficient and
thus powerful. As the name suggests,
Rajyoga means the combination for
kingly traits, which may mean
anything ranging from an overall respect
in the society to having political power."
Sheet9.Range("D" & MyLastRow) =
"Note: If any other planet is in
conjunction with bad status, or any
planet making this yoga is debilitated or
conjunction happens in a bad house,
then This Rajyoga will not reap any good
results."
MyLastRow = MyLastRow + 1
End If

'Seventh Lord and fifth lord conjunction


If (SeventhLord.Signnum =
FifthLord.Signnum) And
(SeventhLord.Tag <> FifthLord.Tag) Then
Sheet9.Range("A" & MyLastRow) =
"Kendra Trikona Raja Yoga"
Sheet9.Range("B" & MyLastRow) =
"Sapthamesh:" & SeventhLord.Tag & " is
conjunct with panchamesh:" &
FifthLord.Tag & "."
Sheet9.Range("C" & MyLastRow) =
"The result of such a rajyoga may be
varied specifically as per the nature of
planets and the houses involved but the
general result is the increase in the
overall status of the individual and
making him luckier, more efficient and
thus powerful. As the name suggests,
Rajyoga means the combination for
kingly traits, which may mean
anything ranging from an overall respect
in the society to having political power."
Sheet9.Range("D" & MyLastRow) =
"Note: If any other planet is in
conjunction with bad status, or any
planet making this yoga is debilitated or
conjunction happens in a bad house,
then This Rajyoga will not reap any good
results."
MyLastRow = MyLastRow + 1
End If

'Seventh Lord and ninth lord conjunction


If (SeventhLord.Signnum =
NinthLord.Signnum) And
(SeventhLord.Tag <> NinthLord.Tag)
Then
Sheet9.Range("A" & MyLastRow) =
"Kendra Trikona Raja Yoga"
Sheet9.Range("B" & MyLastRow) =
"Sapthamesh:" & SeventhLord.Tag & " is
conjunct with Navamesh:" &
NinthLord.Tag & "."
Sheet9.Range("C" & MyLastRow) =
"The result of such a rajyoga may be
varied specifically as per the nature of
planets and the houses involved but the
general result is the increase in the
overall status of the individual and
making him luckier, more efficient and
thus powerful. As the name suggests,
Rajyoga means the combination for
kingly traits, which may mean
anything ranging from an overall respect
in the society to having political power."
Sheet9.Range("D" & MyLastRow) =
"Note: If any other planet is in
conjunction with bad status, or any
planet making this yoga is debilitated or
conjunction happens in a bad house,
then This Rajyoga will not reap any good
results."
MyLastRow = MyLastRow + 1
End If

'Tenth Lord and fifth lord conjunction


If (TenthLord.Signnum =
FifthLord.Signnum) And (TenthLord.Tag
<> FifthLord.Tag) Then
Sheet9.Range("A" & MyLastRow) =
"Kendra Trikona Raja Yoga"
Sheet9.Range("B" & MyLastRow) =
"Dashamesh:" & TenthLord.Tag & " is
conjunct with panchamesh:" &
FifthLord.Tag & "."
Sheet9.Range("C" & MyLastRow) =
"The result of such a rajyoga may be
varied specifically as per the nature of
planets and the houses involved but the
general result is the increase in the
overall status of the individual and
making him luckier, more efficient and
thus powerful. As the name suggests,
Rajyoga means the combination for
kingly traits, which may mean
anything ranging from an overall respect
in the society to having political power."
Sheet9.Range("D" & MyLastRow) =
"Note: If any other planet is in
conjunction with bad status, or any
planet making this yoga is debilitated or
conjunction happens in a bad house,
then This Rajyoga will not reap any good
results."
MyLastRow = MyLastRow + 1
End If

'Tenth Lord and ninth lord conjunction


If (TenthLord.Signnum =
NinthLord.Signnum) And (TenthLord.Tag
<> NinthLord.Tag) Then
Select Case TenthLord.Housenum
Case 1, 4, 5, 7, 9, 10:
Sheet9.Range("A" & MyLastRow) =
"Dharma Karmadhipathi RajaYoga"
Case 2, 3, 6, 8, 11, 12:
Sheet9.Range("A" & MyLastRow) =
"Kendra Trikona Raja Yoga"
End Select
Sheet9.Range("B" & MyLastRow) =
"Dashamesh:" & TenthLord.Tag & " is
conjunct with Navamesh:" &
NinthLord.Tag & "."
Sheet9.Range("C" & MyLastRow) =
"The result of such a rajyoga may be
varied specifically as per the nature of
planets and the houses involved but the
general result is the increase in the
overall status of the individual and
making him luckier, more efficient and
thus powerful. As the name suggests,
Rajyoga means the combination for
kingly traits, which may mean
anything ranging from an overall respect
in the society to having political power."
Sheet9.Range("D" & MyLastRow) =
"Note: If any other planet is in
conjunction with bad status, or any
planet making this yoga is debilitated or
conjunction happens in a bad house,
then This Rajyoga will not reap any good
results."
MyLastRow = MyLastRow + 1
NinthTenthLink = True
End If

'###########################
############################
############################
#######

'############First let us see if


Kendra Lords and Trine Lords are forming
Drishti
Sambandha#################
'First Lord and fifth lord Dristi Sambanda
(Mutual Aspect)
If FindSambanda(FirstLord, FifthLord)
Then
Sheet9.Range("A" & MyLastRow) =
"Kendra Trikona Raja Yoga"
Sheet9.Range("B" & MyLastRow) =
"Lagnesh:" & FirstLord.Tag & " has
Drishti Sambanda (Mutual Aspect) with
Panchamesh:" & FifthLord.Tag & "."
Sheet9.Range("C" & MyLastRow) =
"The result of such a rajyoga may be
varied specifically as per the nature of
planets and the houses involved but the
general result is the increase in the
overall status of the individual and
making him luckier, more efficient and
thus powerful. As the name suggests,
Rajyoga means the combination for
kingly traits, which may mean
anything ranging from an overall respect
in the society to having political power."
Sheet9.Range("D" & MyLastRow) =
"Note: If any other planet is in
conjunction with bad status, or any
planet making this yoga is debilitated or
conjunction happens in a bad house,
then This Rajyoga will not reap any good
results."
MyLastRow = MyLastRow + 1
End If

'First Lord and ninth lord Dristi


Sambanda (Mutual Aspect)
If FindSambanda(FirstLord, NinthLord)
Then
Sheet9.Range("A" & MyLastRow) =
"Kendra Trikona Raja Yoga"
Sheet9.Range("B" & MyLastRow) =
"Lagnesh:" & FirstLord.Tag & " has
Drishti Sambanda (Mutual Aspect) with
Navamesh:" & NinthLord.Tag & "."
Sheet9.Range("C" & MyLastRow) =
"The result of such a rajyoga may be
varied specifically as per the nature of
planets and the houses involved but the
general result is the increase in the
overall status of the individual and
making him luckier, more efficient and
thus powerful. As the name suggests,
Rajyoga means the combination for
kingly traits, which may mean
anything ranging from an overall respect
in the society to having political power."
Sheet9.Range("D" & MyLastRow) =
"Note: If any other planet is in
conjunction with bad status, or any
planet making this yoga is debilitated or
conjunction happens in a bad house,
then This Rajyoga will not reap any good
results."
MyLastRow = MyLastRow + 1
End If

'Fourth Lord and fifth lord Dristi


Sambanda (Mutual Aspect)
If FindSambanda(FourthLord, FifthLord)
Then
Sheet9.Range("A" & MyLastRow) =
"Kendra Trikona Raja Yoga"
Sheet9.Range("B" & MyLastRow) =
"Chaturtesh:" & FourthLord.Tag & " has
Drishti Sambanda (Mutual Aspect) with
panchamesh:" & FifthLord.Tag & "."
Sheet9.Range("C" & MyLastRow) =
"The result of such a rajyoga may be
varied specifically as per the nature of
planets and the houses involved but the
general result is the increase in the
overall status of the individual and
making him luckier, more efficient and
thus powerful. As the name suggests,
Rajyoga means the combination for
kingly traits, which may mean
anything ranging from an overall respect
in the society to having political power."
Sheet9.Range("D" & MyLastRow) =
"Note: If any other planet is in
conjunction with bad status, or any
planet making this yoga is debilitated or
conjunction happens in a bad house,
then This Rajyoga will not reap any good
results."
MyLastRow = MyLastRow + 1
End If

'Fourth Lord and ninth lord Dristi


Sambanda (Mutual Aspect)
If FindSambanda(FourthLord, NinthLord)
Then
Sheet9.Range("A" & MyLastRow) =
"Kendra Trikona Raja Yoga"
Sheet9.Range("B" & MyLastRow) =
"Chaturtesh:" & FourthLord.Tag & " has
Drishti Sambanda (Mutual Aspect) with
Navamesh:" & NinthLord.Tag & "."
Sheet9.Range("C" & MyLastRow) =
"The result of such a rajyoga may be
varied specifically as per the nature of
planets and the houses involved but the
general result is the increase in the
overall status of the individual and
making him luckier, more efficient and
thus powerful. As the name suggests,
Rajyoga means the combination for
kingly traits, which may mean
anything ranging from an overall respect
in the society to having political power."
Sheet9.Range("D" & MyLastRow) =
"Note: If any other planet is in
conjunction with bad status, or any
planet making this yoga is debilitated or
conjunction happens in a bad house,
then This Rajyoga will not reap any good
results."
MyLastRow = MyLastRow + 1
End If

'Seventh Lord and fifth lord Dristi


Sambanda (Mutual Aspect)
If FindSambanda(SeventhLord, FifthLord)
Then
Sheet9.Range("A" & MyLastRow) =
"Kendra Trikona Raja Yoga"
Sheet9.Range("B" & MyLastRow) =
"Sapthamesh:" & SeventhLord.Tag & "
has Drishti Sambanda (Mutual Aspect)
with panchamesh:" & FifthLord.Tag & "."
Sheet9.Range("C" & MyLastRow) =
"The result of such a rajyoga may be
varied specifically as per the nature of
planets and the houses involved but the
general result is the increase in the
overall status of the individual and
making him luckier, more efficient and
thus powerful. As the name suggests,
Rajyoga means the combination for
kingly traits, which may mean
anything ranging from an overall respect
in the society to having political power."
Sheet9.Range("D" & MyLastRow) =
"Note: If any other planet is in
conjunction with bad status, or any
planet making this yoga is debilitated or
conjunction happens in a bad house,
then This Rajyoga will not reap any good
results."
MyLastRow = MyLastRow + 1
End If

'Seventh Lord and ninth lord Dristi


Sambanda (Mutual Aspect)
If FindSambanda(SeventhLord,
NinthLord) Then
Sheet9.Range("A" & MyLastRow) =
"Kendra Trikona Raja Yoga"
Sheet9.Range("B" & MyLastRow) =
"Sapthamesh:" & SeventhLord.Tag & "
has Drishti Sambanda (Mutual Aspect)
with Navamesh:" & NinthLord.Tag & "."
Sheet9.Range("C" & MyLastRow) =
"The result of such a rajyoga may be
varied specifically as per the nature of
planets and the houses involved but the
general result is the increase in the
overall status of the individual and
making him luckier, more efficient and
thus powerful. As the name suggests,
Rajyoga means the combination for
kingly traits, which may mean
anything ranging from an overall respect
in the society to having political power."
Sheet9.Range("D" & MyLastRow) =
"Note: If any other planet is in
conjunction with bad status, or any
planet making this yoga is debilitated or
conjunction happens in a bad house,
then This Rajyoga will not reap any good
results."
MyLastRow = MyLastRow + 1
End If

'Tenth Lord and fifth lord Dristi


Sambanda (Mutual Aspect)
If FindSambanda(TenthLord, FifthLord)
Then
Sheet9.Range("A" & MyLastRow) =
"Kendra Trikona Raja Yoga"
Sheet9.Range("B" & MyLastRow) =
"Dashamesh:" & TenthLord.Tag & " has
Drishti Sambanda (Mutual Aspect) with
panchamesh:" & FifthLord.Tag & "."
Sheet9.Range("C" & MyLastRow) =
"The result of such a rajyoga may be
varied specifically as per the nature of
planets and the houses involved but the
general result is the increase in the
overall status of the individual and
making him luckier, more efficient and
thus powerful. As the name suggests,
Rajyoga means the combination for
kingly traits, which may mean
anything ranging from an overall respect
in the society to having political power."
Sheet9.Range("D" & MyLastRow) =
"Note: If any other planet is in
conjunction with bad status, or any
planet making this yoga is debilitated or
conjunction happens in a bad house,
then This Rajyoga will not reap any good
results."
MyLastRow = MyLastRow + 1
End If

'Tenth Lord and ninth lord Dristi


Sambanda (Mutual Aspect)
If FindSambanda(TenthLord, NinthLord)
Then
Sheet9.Range("A" & MyLastRow) =
"Kendra Trikona Raja Yoga"
Sheet9.Range("B" & MyLastRow) =
"Dashamesh:" & TenthLord.Tag & " has
Drishti Sambanda (Mutual Aspect) with
Navamesh:" & NinthLord.Tag & "."
Sheet9.Range("C" & MyLastRow) =
"The result of such a rajyoga may be
varied specifically as per the nature of
planets and the houses involved but the
general result is the increase in the
overall status of the individual and
making him luckier, more efficient and
thus powerful. As the name suggests,
Rajyoga means the combination for
kingly traits, which may mean
anything ranging from an overall respect
in the society to having political power."
Sheet9.Range("D" & MyLastRow) =
"Note: If any other planet is in
conjunction with bad status, or any
planet making this yoga is debilitated or
conjunction happens in a bad house,
then This Rajyoga will not reap any good
results."
MyLastRow = MyLastRow + 1
NinthTenthLink = True
End If

'###########################
############################
############################
#######

'############First let us see if


Kendra Lords and Trine Lords are forming
Parivarthana
Sambandha#################
'First Lord and fifth lord Parivarthana
Sambanda (Mutual Aspect)
If FindParivartana(FirstLord, FifthLord)
Then
Sheet9.Range("A" & MyLastRow) =
"Kendra Trikona Raja Yoga"
Sheet9.Range("B" & MyLastRow) =
"Lagnesh:" & FirstLord.Tag & " has
Parivarthana Sambanda (Sign Exchange)
with Panchamesh:" & FifthLord.Tag & "."
Sheet9.Range("C" & MyLastRow) =
"The result of such a rajyoga may be
varied specifically as per the nature of
planets and the houses involved but the
general result is the increase in the
overall status of the individual and
making him luckier, more efficient and
thus powerful. As the name suggests,
Rajyoga means the combination for
kingly traits, which may mean
anything ranging from an overall respect
in the society to having political power."
Sheet9.Range("D" & MyLastRow) =
"Note: If any other planet is in
conjunction with bad status, or any
planet making this yoga is debilitated
then This Rajyoga will not reap any good
results."
MyLastRow = MyLastRow + 1
End If
'First Lord and ninth lord Parivarthana
Sambanda (Mutual Aspect)
If FindParivartana(FirstLord, NinthLord)
Then
Sheet9.Range("A" & MyLastRow) =
"Kendra Trikona Raja Yoga"
Sheet9.Range("B" & MyLastRow) =
"Lagnesh:" & FirstLord.Tag & " has
Parivarthana Sambanda (Sign Exchange)
with Navamesh:" & NinthLord.Tag & "."
Sheet9.Range("C" & MyLastRow) =
"The result of such a rajyoga may be
varied specifically as per the nature of
planets and the houses involved but the
general result is the increase in the
overall status of the individual and
making him luckier, more efficient and
thus powerful. As the name suggests,
Rajyoga means the combination for
kingly traits, which may mean
anything ranging from an overall respect
in the society to having political power."
Sheet9.Range("D" & MyLastRow) =
"Note: If any other planet is in
conjunction with bad status, or any
planet making this yoga is debilitated
then This Rajyoga will not reap any good
results."
MyLastRow = MyLastRow + 1
End If

'Fourth Lord and fifth lord Parivarthana


Sambanda (Mutual Aspect)
If FindParivartana(FourthLord, FifthLord)
Then
Sheet9.Range("A" & MyLastRow) =
"Kendra Trikona Raja Yoga"
Sheet9.Range("B" & MyLastRow) =
"Chaturtesh:" & FourthLord.Tag & " has
Parivarthana Sambanda (Sign Exchange)
with panchamesh:" & FifthLord.Tag & "."
Sheet9.Range("C" & MyLastRow) =
"The result of such a rajyoga may be
varied specifically as per the nature of
planets and the houses involved but the
general result is the increase in the
overall status of the individual and
making him luckier, more efficient and
thus powerful. As the name suggests,
Rajyoga means the combination for
kingly traits, which may mean
anything ranging from an overall respect
in the society to having political power."
Sheet9.Range("D" & MyLastRow) =
"Note: If any other planet is in
conjunction with bad status, or any
planet making this yoga is debilitated
then This Rajyoga will not reap any good
results."
MyLastRow = MyLastRow + 1
End If

'Fourth Lord and ninth lord Parivarthana


Sambanda (Mutual Aspect)
If FindParivartana(FourthLord,
NinthLord) Then
Sheet9.Range("A" & MyLastRow) =
"Kendra Trikona Raja Yoga"
Sheet9.Range("B" & MyLastRow) =
"Chaturtesh:" & FourthLord.Tag & " has
Parivarthana Sambanda (Sign Exchange)
with Navamesh:" & NinthLord.Tag & "."
Sheet9.Range("C" & MyLastRow) =
"The result of such a rajyoga may be
varied specifically as per the nature of
planets and the houses involved but the
general result is the increase in the
overall status of the individual and
making him luckier, more efficient and
thus powerful. As the name suggests,
Rajyoga means the combination for
kingly traits, which may mean
anything ranging from an overall respect
in the society to having political power."
Sheet9.Range("D" & MyLastRow) =
"Note: If any other planet is in
conjunction with bad status, or any
planet making this yoga is debilitated
then This Rajyoga will not reap any good
results."
MyLastRow = MyLastRow + 1
End If

'Seventh Lord and fifth lord Parivarthana


Sambanda (Mutual Aspect)
If FindParivartana(SeventhLord,
FifthLord) Then
Sheet9.Range("A" & MyLastRow) =
"Kendra Trikona Raja Yoga"
Sheet9.Range("B" & MyLastRow) =
"Sapthamesh:" & SeventhLord.Tag & "
has Parivarthana Sambanda (Sign
Exchange) with panchamesh:" &
FifthLord.Tag & "."
Sheet9.Range("C" & MyLastRow) =
"The result of such a rajyoga may be
varied specifically as per the nature of
planets and the houses involved but the
general result is the increase in the
overall status of the individual and
making him luckier, more efficient and
thus powerful. As the name suggests,
Rajyoga means the combination for
kingly traits, which may mean
anything ranging from an overall respect
in the society to having political power."
Sheet9.Range("D" & MyLastRow) =
"Note: If any other planet is in
conjunction with bad status, or any
planet making this yoga is debilitated
then This Rajyoga will not reap any good
results."
MyLastRow = MyLastRow + 1
End If

'Seventh Lord and ninth lord


Parivarthana Sambanda (Mutual Aspect)
If FindParivartana(SeventhLord,
NinthLord) Then
Sheet9.Range("A" & MyLastRow) =
"Kendra Trikona Raja Yoga"
Sheet9.Range("B" & MyLastRow) =
"Sapthamesh:" & SeventhLord.Tag & "
has Parivarthana Sambanda (Sign
Exchange) with Navamesh:" &
NinthLord.Tag & "."
Sheet9.Range("C" & MyLastRow) =
"The result of such a rajyoga may be
varied specifically as per the nature of
planets and the houses involved but the
general result is the increase in the
overall status of the individual and
making him luckier, more efficient and
thus powerful. As the name suggests,
Rajyoga means the combination for
kingly traits, which may mean
anything ranging from an overall respect
in the society to having political power."
Sheet9.Range("D" & MyLastRow) =
"Note: If any other planet is in
conjunction with bad status, or any
planet making this yoga is debilitated
then This Rajyoga will not reap any good
results."
MyLastRow = MyLastRow + 1
End If

'Tenth Lord and fifth lord Parivarthana


Sambanda (Mutual Aspect)
If FindParivartana(TenthLord, FifthLord)
Then
Sheet9.Range("A" & MyLastRow) =
"Kendra Trikona Raja Yoga"
Sheet9.Range("B" & MyLastRow) =
"Dashamesh:" & TenthLord.Tag & " has
Parivarthana Sambanda (Sign Exchange)
with panchamesh:" & FifthLord.Tag & "."
Sheet9.Range("C" & MyLastRow) =
"The result of such a rajyoga may be
varied specifically as per the nature of
planets and the houses involved but the
general result is the increase in the
overall status of the individual and
making him luckier, more efficient and
thus powerful. As the name suggests,
Rajyoga means the combination for
kingly traits, which may mean
anything ranging from an overall respect
in the society to having political power."
Sheet9.Range("D" & MyLastRow) =
"Note: If any other planet is in
conjunction with bad status, or any
planet making this yoga is debilitated
then This Rajyoga will not reap any good
results."
MyLastRow = MyLastRow + 1
End If

'Tenth Lord and ninth lord Parivarthana


Sambanda (Mutual Aspect)
If FindParivartana(TenthLord, NinthLord)
Then
Sheet9.Range("A" & MyLastRow) =
"Kendra Trikona Raja Yoga"
Sheet9.Range("B" & MyLastRow) =
"Dashamesh:" & TenthLord.Tag & " has
Parivarthana Sambanda (Sign Exchange)
with Navamesh:" & NinthLord.Tag & "."
Sheet9.Range("C" & MyLastRow) =
"The result of such a rajyoga may be
varied specifically as per the nature of
planets and the houses involved but the
general result is the increase in the
overall status of the individual and
making him luckier, more efficient and
thus powerful. As the name suggests,
Rajyoga means the combination for
kingly traits, which may mean
anything ranging from an overall respect
in the society to having political power."
Sheet9.Range("D" & MyLastRow) =
"Note: If any other planet is in
conjunction with bad status, or any
planet making this yoga is debilitated
then This Rajyoga will not reap any good
results."
MyLastRow = MyLastRow + 1
NinthTenthLink = True
End If

'###########################
############################
############################
#######

'^^^^^^^^^^^^^^^^^^^^^^^^^^^
^^ Sreenatha RajaYoga
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^^^^^
'It occurs when 7th lord is exalted and
lords of 9th and 10 th house are
associated with each other.
GetPlanetStatus4prediction
SeventhLord.Tag, SeventhLord.Signnum
If (PlanetStatus = "EXHALTED") And
(NinthTenthLink) Then
Sheet9.Range("A" & MyLastRow) =
"Sreenatha Raja Yoga"
Sheet9.Range("B" & MyLastRow) =
"Sapthamesh:" & SeventhLord.Tag & " is
exhalted and the Navamesh:" &
NinthLord.Tag & " and Dasamesh:" &
TenthLord.Tag & " are linked."
Sheet9.Range("C" & MyLastRow) =
"The result of such a rajyoga may be
varied specifically as per the nature of
planets and the houses involved but the
general result is the increase in the
overall status of the individual and
making him luckier, more efficient and
thus powerful. As the name suggests,
Rajyoga means the combination for
kingly traits, which may mean
anything ranging from an overall respect
in the society to having political power."
Sheet9.Range("D" & MyLastRow) =
"Note: If any other planet is in
conjunction with bad status, or any
planet making this yoga is debilitated
then This Rajyoga will not reap any good
results."
MyLastRow = MyLastRow + 1
End If
'^^^^^^^^^^^^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^

End Function

Public Function FindSambanda(A As


HouseLord, B As HouseLord) As Boolean

FindSambanda = False
If (AStroADD(A.Signnum, 7) =
B.Signnum) Then 'Both planets are
opposite to each other forming
Sambandha
FindSambanda = True
ElseIf ((A.Tag = "Mars") And (B.Tag =
"Saturn")) Then 'Special case between
saturn and mars
If (AStroADD(A.Signnum, 4) =
B.Signnum) Then
FindSambanda = True
End If
ElseIf ((B.Tag = "Mars") And (A.Tag =
"Saturn")) Then 'Special case between
saturn and mars
If (AStroADD(B.Signnum, 4) =
A.Signnum) Then
FindSambanda = True
End If
End If
End Function

Public Function FindParivartana(A As


HouseLord, B As HouseLord) As Boolean

FindParivartana = False

If (A.Housenum = B.num) And


(B.Housenum = A.num) Then
FindParivartana = True
End If

End Function

Public Function
GetDispositorPlanet(inputplanetsignnum
As Integer) As String

Select Case inputplanetsignnum

Case 1, 8: GetDispositorPlanet =
"Mars"
Case 2, 7: GetDispositorPlanet =
"Venus"
Case 3, 6: GetDispositorPlanet =
"Mercury"
Case 4: GetDispositorPlanet =
"Moon"
Case 5: GetDispositorPlanet = "Sun"
Case 9, 12: GetDispositorPlanet =
"Jupiter"
Case 10, 11: GetDispositorPlanet =
"Saturn"

End Select

End Function

Вам также может понравиться