How to transform some tags into 1 tag easily

Combine both approaches:

case(
	stringFormat("%d.%d.%d", {Tag1}, {Tag2}, {Tag3}),
	"0.0.0", 0
	"1.1.1", 99
	...
	// fallback
)

Fast(ish), because expressions, and more readable/maintainable.

7 Likes