Does anyone know why when I try to convert a texinput text to number with the expression VALUE(), Im getting an error on the entire Collect function. The field "Cantidad" withouy issues is: Cantidad: TextInputCantidadPrendas.Text; however when I add the function Valur to convert to Number is when Im getting the error: Cantidad: Value(TextInputCantidadPrendas.Text);
Here the Collect function.
Collect(
_ColArticulosLavado;
{
Orden: _OrdenSeleccionada.Orden;
IDArticuloCliente: ComboBoxArticulo.Selected.IDArt_x00ed_culoCliente;
Cantidad: TextInputCantidadPrendas.Text;
Carga: _VarConsecutivoCarga;
Lavadora: ComboBoxMaquina.Selected.Value;
Programa: ComboBoxPrograma.Selected.Value;
Peso: Value(LookUp(TSAU_ArticulosClientes; IDArt_x00ed_culoCliente = ComboBoxArticulo.Selected.IDArt_x00ed_culoCliente;Peso)* Value(TextInputCantidadPrendas.Text))
}
)