Hello everyone, today I have a question about the beta function, INPUT().
In an app, I need to request items using INPUT(), which prompts me to enter a quantity of items (1, 2, …, n) — it doesn’t matter the exact amount.
I also have a column that contains the stock of that item, which limits the maximum amount that can be requested.
What I want is for the INPUT() to display as a display name like “Quantity to request (Maximum 1),” for example, which in terms of an expression would be:
CONCATENATE("amount to request (max ", [stock])
This works; however, I don’t want this title to appear in the table view. So, I’ve set up a simple expression like this:
IF( CONTEXT("ViewType") = "Table", "Requested amount", CONCATENATE("amount to request (max ", [stock]) )
This seems to work, but once inside the INPUT(), when the quantity changes, the display name of the column automatically reverts to the table view name. So, instead of saying “Quantity to request (Maximum 1),” it changes to “Cantidad Solicitada.”
Does anyone know what the correct expression should be, or in what context INPUT() functions?
Thanks in advance. Best regards.