And txt_akt_stunden_1.Value should give the text in Textbox?
The reason i want to do this is that i want to save the value as the number 1.2 independent if the user uses 1,2 or 1.2 and browser settings
Any help is welcome
With(
{
_msg:
Substitute(
txt_akt_stunden_1.Value,
",",
"."
)
},
Notify(
_msg,
NotificationType.Information
)
);
Notify(
Substitute(
txt_akt_stunden_1.Text,
",",
"."
)
);