Hi, I use SharePoint to store data.
There is a order list app.
I patch the data after clicking the confirm button.
The SP data type of "price" is number,
and I use: Value(DataCardValue13.Text).
But it can't be input to SP,
there is empty of data.
I don't know why,
Please help me, thanks.
Solved! Go to Solution.
Hi @Anonymous :
Could you tell me what the price column is?Is it a number column?
Could you please check whether Value(DataCardValue13.Text) has the correct return value?(Add a label control and set it's text property to "Value(DataCardValue13.Text)")
May be you could try:
Value(
Match(DataCardValue13.Text,"\d+(\.\d+)?").FullMatch
)
Best Regards,
Bof
Hi @Anonymous :
Could you tell me what the price column is?Is it a number column?
Could you please check whether Value(DataCardValue13.Text) has the correct return value?(Add a label control and set it's text property to "Value(DataCardValue13.Text)")
May be you could try:
Value(
Match(DataCardValue13.Text,"\d+(\.\d+)?").FullMatch
)
Best Regards,
Bof
User | Count |
---|---|
246 | |
105 | |
82 | |
49 | |
42 |