Hi @Anonymous ,
There is no easy way to restrict text inputs to text boxes. As a workaround, you can add Labels below each Text Input box and set Text property. For example, Label below Jan input box is as follows:
If(
Sum(Filter(YourDataSource, Name = User().FullName),Jan)+ JanInput > 1,
"Allocation for Jan shouldn't exceed 100% or 1"
)
You can also set Color of the Label to Red so that make them seem like warnings.
Hope this helps.
Best regards,
Community Support Team _ Jeffer Ni
If this post helps, then please consider Accept it as the solution to help the other members find it.