Fantasy Calendar Creation stumbling..

m26e4u

New Member
Joined
Mar 4, 2014
Messages
13
Having issues with Creating a Dynamic Fantasy Calendar.

By no means am I good with Excel. I can regurgitate things I use often, as far as free-thinking and logical breakdown regarding Excel formulas to execute solutions to problems… those skills are nonexistent.
I have tried to use the Date/Month and realized it is limited to the Gregorian System. I'm unaware of how to create new controls for the formula to reference. I combed through this messageboard as well as the interwebs to no avail. Nevertheless, I post here in hopes of finding a solution. Thanks for the assistance.

I am creating a Fantasy world where the Calendar is based on this timekeeping protocol.

100 second in a minute
50 minutes in a hour
25 hours in a day
10 days in a week
5 weeks in a month
10 months in an year

I'm trying to create a dynamic calendar in Excel based on this information so I can plug in a date (DD/MM/YYYY) and it would go to that month and year. Very linear.

I would also like to overlay seasonality phases based on a 30-day period with 12 seasons also making this across the timekeeping calendar.

I'll try to give an example of the date formatting. I don't need to name the days of the week. Just need to name the months.

Months:
One
Two
Three
Four
Five
Six
Seven
Eight
Nine
Ten

Then overlay the seasons. 12 seasons lasting 30 days each

Seasons:
Boiling
Hot
Warm
Tempid
Crisp
Cold
Freezing
Chilly
Brisk
Thawing
Pleasant
Steamy

For example, the date could be Day 42, of Month 5, in Chilly season, 0007.
Or 42/05/0007-Chilly

Again thank you very much for your assistance!
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
Let me know if this is anything like what you were looking for. Columns T-W are helper columns and allow you to rename things easily. I wonder if you want to show when the next season starts on the calendar as well. This will take a bit more thought, but I should have most of the pieces in place.

temp macro work2.xlsm
ABCDEFGHIJKLMNOPQRSTUVW
11210
2Date:10/1/0(use dd/mm/yyyy)IndexMonthSeasons
31StarterBoiling
4MonthStarterYear0000SeasonHot2After StartHot
53SoonerWarm
6Day4LongerTepid
7123456789105SlowerCrips
8Week1123456789106BenderCold
92111213141516171819207RebounderFreezing
103212223242526272829308EventuallyChilly
114313233343536373839409LaterBrisk
1254142434445464748495010EnderThawing
1311Pleasant
1412Steamy
Calendar
Cell Formulas
RangeFormula
U1U1=INDEX(FILTERXML("<k><m>"&SUBSTITUTE(SUBSTITUTE(B2,"/", " ")," ", "</m><m>")&"</m></k>","//m"),2)
V1V1=ROUNDDOWN(($G$4*10+INDEX(FILTERXML("<k><m>"&SUBSTITUTE(SUBSTITUTE($B$2,"/"," ")," ","</m><m>")&"</m></k>","//m"),2)*50+W1)/360*12,0)
W1W1=INDEX(FILTERXML("<k><m>"&SUBSTITUTE(SUBSTITUTE(B2,"/", " ")," ", "</m><m>")&"</m></k>","//m"),1)
C4C4=XLOOKUP(U1,T3:T12,U3:U12, "Invalid month",0)
G4G4=INDEX(FILTERXML("<k><m>"&SUBSTITUTE(SUBSTITUTE(B2,"/", " ")," ", "</m><m>")&"</m></k>","//m"),3)
J4J4=XLOOKUP(V1,T3:T14,V3:V14,,0)
Cells with Conditional Formatting
CellConditionCell FormatStop If True
C8:L12Expression=IF(C8=$W$1,TRUE,FALSE)textNO
 
Upvote 0
Thanks for the reply!

This is what I have so far https://docs.google.com/spreadsheet...ouid=103558217958093259383&rtpof=true&sd=true
There are still issues with mine as I am having difficulty in toward the end of the seasonality rotation. Day 29 of the rotation is correct, then Day 30 switches to the next season. Missing by one day.....

Then I would like the input from the sheet1 to roll over the entire first month and I can't seem to get that to work. The months further down on sheet1 are only for reference ( I plan on deleting them and only working from the one monthly calendar.)

I think your solution is more simple although I would need to separate the day from the month and year and figure out how to adapt it to my sheet.
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,959
Members
449,096
Latest member
Anshu121

We've detected that you are using an adblocker.

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

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

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

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

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

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

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

Disable uBlock

Follow these easy steps to disable uBlock

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