2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Notion数式で分数を時刻文字列に変換

Last updated at Posted at 2024-05-12

常に"H:MM:SS"の場合

lets(
	h, floor(prop("") / 3600),
	m, floor(mod(prop(""), 3600) / 60),
	s, mod(prop(""), 60),
	h + ":" + (m < 10 ? "0" : "") + m + ":"  + (s < 10 ? "0" : "") + s
)

image.png

1時間未満なら"M:SS"の場合

lets(
	h, floor(prop("") / 3600),
	m, floor(mod(prop(""), 3600) / 60),
	s, mod(prop(""), 60),
	(h ? h + ":": "") + (h && m < 10 ? "0" : "") + m + ":"  + (s < 10 ? "0" : "") + s
)

image.png

1分未満なら"S"の場合

lets(
	h, floor(prop("") / 3600),
	m, floor(mod(prop(""), 3600) / 60),
	s, mod(prop(""), 60),
	(h ? h + ":": "") + (h || m ? (h && m < 10 ? "0" : "") + m + ":" : "") + ((h || m) && s < 10 ? "0" : "") + s
)

image.png

参考

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?