Hey @Piyushjha1
Lets say you have 123456 saved in your text label.
Then create an empty collection like:
ClearCollect(SplitCollection,{})
After this you can add the following to a button:
ForAll(
Split(Label1, ""),
Collect(SplitCollection, {Digit: Result})
)
Replace Label1 with respective text label name.
The For All function will split the value into multiple rows.
I hope this helps 🙂