Yes, this is a known issue with the Modern Number Input control in Power Apps, where it does not update the value immediately upon entry, causing the form to submit the previous value instead of the new one. This happens because the TriggerOutput property (which forces an update) is missing in the modern number input.
Since the number input does not update automatically, you can use the OnChange
property to manually update a variable and bind it to the control.
Steps:
Default
property of the number input to a variable:OnChange
property of the Number Input, update the variable:
Since Modern Text Input has TriggerOutput
, you can link it to the number input to force an update.
Steps:
Visible
to false
).Default
property to the Modern Number Input control’s value:
If the above workarounds do not provide the desired behavior, consider switching back to the classic Number Input control, which does not have this issue.
WarrenBelz
791
Most Valuable Professional
MS.Ragavendar
410
mmbr1606
275
Super User 2025 Season 1