🌑🌒🌓🌔🌕🌖🌗🌘🌑

How to use

Copy the formula in Progress Bar (Compact), change prop("Example") to the percentage column in your database.

Formula explanation

Unit (Format)

(prop("Decimal") == 0) 
	? "" 
	: ((prop("Decimal") < 5) 
		? "🌘" 
		: ((prop("Decimal") == 5) 
			? "🌗" 
			: "🌖"))

Progress Bar

slice("🌕🌕🌕🌕🌕🌕🌕🌕🌕🌕", 0, 2 * prop("Floor")) 
+ prop("Unit (Format)") 
+ slice("🌑🌑🌑🌑🌑🌑🌑🌑🌑🌑", 0, 2 * (10 - ((prop("Decimal") > 0) ? (1 + prop("Floor")) : prop("Floor"))))