Help

Re: Updating number field with user input [solved]

Solved
Jump to Solution
845 0
cancel
Showing results for 
Search instead for 
Did you mean: 
Josh_Haywood
6 - Interface Innovator
6 - Interface Innovator

Hi all! I’m still pretty new to scripting, but came across a problem that feels like it should have an obvious answer.

I would like a user to be able to update a number field in my base via some inputs in the script, however the input.textAsync function throws an error because the string can’t be assigned to that field type.

Aside from changing my field to a string, is there away to change the input type to a number in the scripting block?

image

Thanks!

1 Solution

Accepted Solutions
Justin_Barrett
18 - Pluto
18 - Pluto

Wrap Number() around your string variable to convert it to a number:

...
table.updateRecordAsync(record, {
    'Respeaking Score': Number(score),
...

More info about JavaScript type conversion can be found here:

https://www.w3schools.com/js/js_type_conversion.asp

See Solution in Thread

2 Replies 2
Justin_Barrett
18 - Pluto
18 - Pluto

Wrap Number() around your string variable to convert it to a number:

...
table.updateRecordAsync(record, {
    'Respeaking Score': Number(score),
...

More info about JavaScript type conversion can be found here:

https://www.w3schools.com/js/js_type_conversion.asp

Amazing, thank you!

I was hoping there would be an easy fix! So much to learn.