Hi @ravi123, this would mean that all records within the list should have the new value for that column.
You could use an UpdateIf statement to achieve this:
UpdateIf(ListName, true, {ColumnName: txtInput.Text})
Please update ListName with your SP list, ColumnName with the name of the value column and TextInput with the name of your text input control.
If it is a number column you might need to adjust it slightly with a Value() around the TextInput:
UpdateIf(ListName, true, {ColumnName: Value(txtInput.Text)})
If this solves your question, would you be so kind as to accept it as a solution.
Thanks!