Challenge #87: Losing Daylight
オプション
- RSS フィードを購読する
- トピックを新着としてマーク
- トピックを既読としてマーク
- このトピックを現在のユーザーにフロートします
- ブックマーク
- 購読
- ミュート
- 印刷用ページ
SaâdEnnassiri
アステロイド
07-27-2020
08:55 AM
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- モデレーターに通知する
rayJ
アステロイド
07-29-2020
06:00 PM
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- モデレーターに通知する
Very nice practice. Had to use union to join the September row. Macro seems able to do the same but I am not there yet.
carmenrapariz
アステロイド
07-31-2020
07:32 AM
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- モデレーターに通知する
kevin025
アステロイド
07-31-2020
07:49 AM
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- モデレーターに通知する
Here is my solution with Formula explained.
スポイラ
We use Formula tool to extract Hours and Minutes
For Sunrise and Sunset, hours and minutes positions are the same so we use Left([Sunrise),4)
- 4 means total length it will grab is 4
- To convert to 24 hours we simply do:
- ToString(ToNumber(Left([Sunset], 1))+12)+Right([Sunset], 3)
- To break this down, we use Left([Sunset], 1)) to grab the first digit which is "7"
- We then convert it to number then add 12 by using ToNumber() function which will give us "19"
- We then convert it back to string and add the rest of the string back by using ToString and Right([Sunset],3)
- 3 means we will grab 3 letters including ":"
Voila! You have yourself a 24 hours time just like that.