Hi @ProtoSup,
If the number is always 9 characters long, then you could opt for the approach below:
//Text property of a label
Text(123456789, "### ### ###")
Should the length of the number be unknown, give the following a try:
Concat(
With(
{
wSplitArray: Split(
12345678,
""
)
},
ForAll(
Sequence(CountRows(wSplitArray)),
Index(
wSplitArray,
Value
).Value & If(
Mod(
Value,
3
) = 0,
" "
)
)
),
Value
)
Replace all hardcoded references of the number with a reference to the number value.
If this solves your question, would you be so kind as to accept it as a solution & give it a thumbs up.
Thanks!