RosettaCodeData/Task/Show-ASCII-table/Excel/show-ascii-table-2.excel

20 lines
349 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
justifyRight
=LAMBDA(n,
LAMBDA(c,
LAMBDA(s,
LET(
lng, LEN(s),
IF(
lng < n,
MID(
REPT(c, n),
lng, n - lng
) & s,
s
)
)
)
)
)